Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
projekte:dot-matrix-display [2016-06-28 07:39] – cracki | projekte:dot-matrix-display [2017-01-17 01:01] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 10: | Line 10: | ||
Zwei Dot Matrix Panels aus China, 32x16 Pixel Rot, 10 mm Pitch (P10). Keine Ahnung, wem die gehören. | Zwei Dot Matrix Panels aus China, 32x16 Pixel Rot, 10 mm Pitch (P10). Keine Ahnung, wem die gehören. | ||
- | Arduino, Steckbrett, Netzteil sind Clubbesitz/ | + | Arduino, ESP8266 NodeMCU Devboard, Steckbrett, Netzteil sind Clubbesitz/ |
* http:// | * http:// | ||
Line 17: | Line 17: | ||
* https:// | * https:// | ||
- | Example Code mit Noise, gerade genug um es am laufen zu halten: | + | ===== Pinbelegungen ===== |
- | < | + | |
- | /* | + | |
- | Game of Life display | + | |
- | | + | |
- | | + | |
- | */ | + | * 4: B mux |
+ | * 8: Shift Clock (SPI clock) | ||
+ | * 10: Store Clock (SPI select) | ||
+ | * 12: R (SPI mosi) | ||
- | #include < | + | ===== Implementierung ===== |
- | #include < | + | |
- | // How many displays do you have? | + | * modifizierte DMD2: https://github.com/ |
- | const int WIDTH = 2; | + | * arduino sketch und lua script https:// |
- | const int HEIGHT = 1; | + | * TCP pixelflut kommt *vielleicht* noch. wer ne implementierung in NodeMCU-Lua anschleppt |
- | SPIDMD dmd(WIDTH, | + | ==== MQTT Endpunkte ==== |
- | void populate_random_cells() { | + | * runlevel : shutdown/ |
- | // Populate the initial display randomly | + | * kontrolliert, |
- | | + | |
- | | + | * reset : |
- | | + | * " |
- | | + | |
- | | + | * solid : 0/1/255 |
- | | + | * 0 und 1 setzen die pixel auf 0 oder 1 |
- | } | + | |
- | } | + | * dutycycle : 0-255 |
+ | * sollte man nicht uebertreiben, | ||
+ | * pixelflut : PX <x> <y> <0/1> | ||
+ | | ||
+ | * text : Text vollhoch | ||
+ | * text1 : Text Zeile 1 | ||
+ | * text2 : Text Zeile 2 | ||
+ | * gameoflife : 0/1 | ||
+ | * gameoflife/ | ||
+ | * gameoflife/ | ||
- | // the setup routine runs once when you press reset: | + | ==== Pinbelegungen ==== |
- | void setup() { | + | |
- | Serial.begin(9600); | + | |
- | dmd.setBrightness(50); | + | |
- | dmd.begin(); | + | |
- | randomSeed(analogRead(0)); | + | Panel -> Arduino: |
- | | + | |
- | } | + | * 4 -> D7 |
+ | * 8 -> D13 | ||
+ | * 10 -> D8 | ||
+ | * 12 -> D11 | ||
- | // the loop routine runs over and over again forever: | + | Arduino mit ESP fuer netzwerk: |
- | void loop() { | + | * RXD <- ESP TXD0 |
- | | + | * TXD <- ESP RXD0 |
- | | + | |
+ | | ||
- | long start = millis(); | + | ESP als netzwerksklave an Arduino: |
+ | * erde, vcc | ||
+ | * TXD0 -> Arduino RX | ||
+ | * RXD0 -> Arduino TX | ||
+ | * D2 -> arduino reset | ||
- | // Update next generation of every pixel | + | ungetestete alternative, |
- | | + | |
- | | + | |
- | for(int y = 0; y < dmd.height; y++) { | + | * 1 (OE) -> D3 (sollte PWM koennen) |
- | bool state = current_generation.getPixel(x,y); | + | * 8 (SPI clock) -> D5 (HSCLK) |
- | int live_neighbours = 0; | + | * 10 (store pulse) -> D0 (gpio) |
+ | * 12 (R) -> D7 (HMOSI) | ||
- | // Count how many live neighbours we have in the current generation | ||
- | for(int nx = x - 1; nx < x + 2; nx++) { | ||
- | for(int ny = y - 1; ny < y + 2; ny++) { | ||
- | if(nx == x && ny == y) | ||
- | continue; | ||
- | if(current_generation.getPixel(nx, | ||
- | live_neighbours++; | ||
- | } | ||
- | } | ||
- | // Update pixel count for the next generation | ||
- | if(state && (live_neighbours < 2 || live_neighbours > 3)) { | ||
- | state = false; | ||
- | change = true; | ||
- | } | ||
- | else if(!state && (live_neighbours == 3)) { | ||
- | state = true; | ||
- | change = true; | ||
- | } | ||
- | dmd.setPixel(x, | ||
- | } | ||
- | } | ||
- | |||
- | // random seed | ||
- | for (int k = 15; k > 0; k -= 1) | ||
- | dmd.setPixel(random(dmd.width), | ||
- | |||
- | Serial.println(String(" | ||
- | |||
- | if(!change && 0) { | ||
- | // We've made it to an unchanging state | ||
- | delay(500); | ||
- | populate_random_cells(); | ||
- | // (We can't detect steady states where things change forward | ||
- | // and back, for these you need to press reset!) | ||
- | } | ||
- | } | ||
- | </ |