Skip to content

Commit

Permalink
Version 2.2
Browse files Browse the repository at this point in the history
Update Version 2.2
Bugfix breaking Wifi by Neopixel lib.
  • Loading branch information
Eisbaeeer committed Jan 17, 2022
1 parent eff58b4 commit 279a52a
Show file tree
Hide file tree
Showing 6 changed files with 185 additions and 82 deletions.
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ will give you more informations about the web page and the messured values. You
|---------------------|--------------------|--------------|
| GND | GND | SSD1309 OLED |
| 3.3V | Vin | SSD1309 OLED |
| D1 | SCL | SSD1309 OLED |
| D2 | SDA | SSD1309 OLED |
| D6 | Data in | WS2812B LED |
| GPIO5 | SCL | SSD1309 OLED |
| GPIO4 | SDA | SSD1309 OLED |
| GPIO3 | Data in | WS2812B LED |
| Vin or 5V | +5V | WS2812B LED |
| GND | GND | WS2812B LED |
| D7 | Pin6 UART TXT (gn) | MH-Z19 CO2 |
| D8 | Pin5 UART RXT (bl) | MH-Z19 CO2 |
| GPIO13 | Pin6 UART TXT (gn) | MH-Z19 CO2 |
| GPIO15 | Pin5 UART RXT (bl) | MH-Z19 CO2 |
| GND | Pin3 GND (sw) | MH-Z19 CO2 |
| Vin or 5V | Pin4 +5V (rt) | MH-Z19 CO2 |

Expand All @@ -59,6 +59,10 @@ E-Mail [email protected]

## Changelog

### Version 2.2
- Bugfixes
- Changed Adafruit Neopixel lib to NeoPixelBus regarding disabled interrupts. This will break Wifi (You have to change the Din Pin to GPIO3)

### Version 2.1
- Bugfix MQTT client.loop

Expand Down
Binary file modified binary/firmware.bin
Binary file not shown.
26 changes: 24 additions & 2 deletions source/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@
"length": 32,
"value": "CO2light"
},
{
"name": "projectVersion",
"label": "Project Version",
"type": "char",
"disabled": true,
"hidden": true,
"length": 8,
"value": "2.2"
},
{
"name": "language",
"type": "char",
Expand All @@ -20,7 +29,20 @@
"label": "Time Zone",
"type": "char",
"length": 40,
"value": "PSTR(CET-1CEST,M3.5.0,M10.5.0/3)"
"value": "PSTR(CET-1CEST,M3.5.0,M10.5.0/3)",
"control": "select",
"options": [
"PSTR(CET-1CEST,M3.5.0,M10.5.0/3)",
"PSTR(EET-2EEST,M3.5.0/3,M10.5.0/4)",
"PSTR(IST-1GMT0,M10.5.0,M3.5.0/1)",
"PSTR(EET-2EEST,M3.5.0/3,M10.5.0/4)"
],
"optionLabels": [
"Europe - Berlin / Amsterdam / Andorra",
"Europe - Athens",
"Europe - Dublin",
"Europe - Bukarest/Helsinki"
]
},
{
"name": "wifi_hostname",
Expand All @@ -39,7 +61,7 @@
{
"name": "matrixIntensity",
"label": "LED brightness",
"type": "uint16_t",
"type": "uint8_t",
"value": "30",
"control": "slider",
"min": 0,
Expand Down
6 changes: 0 additions & 6 deletions source/dashboard.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
[
{
"name": "Version",
"type": "char",
"length": 6,
"direction": "display"
},
{
"name": "Wifi_RSSI",
"type": "char",
Expand Down
2 changes: 1 addition & 1 deletion source/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ lib_deps =
https://github.com/lorol/ESPAsyncWebServer
https://github.com/WifWaf/MH-Z19
https://github.com/maakbaas/esp8266-iot-framework
adafruit/Adafruit NeoPixel@^1.10.3
https://github.com/Makuna/NeoPixelBus
adafruit/Adafruit SSD1306@^2.5.0
paulstoffregen/Time@^1.6.1
adafruit/Adafruit BusIO@^1.9.6
Expand Down
Loading

0 comments on commit 279a52a

Please sign in to comment.