Combine this code with a (8x32) MAX7219 LED matrix, you can buy these on AliExpress for 2-3€. 3D Printable case for the matrix: https://www.thingiverse.com/thing:2678058
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
@charset "utf-8"; | |
/** | |
* based on https://github.com/CreativeBulma/bulma-divider | |
* made compatible with bulma 1.0+ by replacing the used variables with up-to-date imports | |
*/ | |
@use "node_modules/bulma/sass/utilities"; | |
$divider-background-color: utilities.$border !default; | |
$divider-font-size: utilities.$size-7 !default; | |
$divider-margin-inner-size: 10px !default; |
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
#include <Arduino.h> | |
#include <Wire.h> | |
#include "SSD1306Wire.h" | |
#include <Adafruit_Sensor.h> | |
#include <DHT.h> | |
#include <SDS011.h> | |
#include <ESP8266WiFi.h> | |
#include <PubSubClient.h> | |
#define mqttUser "MQTT USER" |
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
#include <Arduino.h> | |
#include <Adafruit_Sensor.h> | |
#include <DHT.h> | |
#include <SDS011.h> | |
#include <ESP8266WiFi.h> | |
#include <PubSubClient.h> | |
#define mqttIP "MQTT IP" | |
#define mqttPort 1883 | |
#define mqttUsername "MQTT USERNAME" |
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
#include <Adafruit_GFX.h> | |
#include <Adafruit_NeoMatrix.h> | |
#include <Adafruit_NeoPixel.h> | |
#define PIN 6 | |
Adafruit_NeoMatrix matrix = Adafruit_NeoMatrix(32, 8, PIN, | |
NEO_MATRIX_TOP + NEO_MATRIX_LEFT + | |
NEO_MATRIX_COLUMNS + NEO_MATRIX_ZIGZAG, | |
NEO_GRB + NEO_KHZ800); |