This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import re | |
import random as r | |
# https://pyzufall.readthedocs.io/ | |
from pyzufall.generator import verbt, objekt | |
for i in range(1, 100): | |
s = objekt() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var esp = require("ESP8266"); | |
var pin = new Pin(5); | |
pinMode(pin, "output"); | |
var pixels = [ | |
//G,R,B,W | |
0,0,0,0, // LED 0 | |
0,0,0,0, // LED 1 | |
0,0,0,0, // LED 2 |