Dependency Update and added ESP32 S2 warning since it causes to much issues.

This commit is contained in:
Djuri Baars 2023-06-13 20:30:40 +02:00
parent 93dee51dac
commit 3b5ee2c81a
5 changed files with 8 additions and 8 deletions

View file

@ -2,13 +2,18 @@
![BTClock](doc/assets/btclock.jpg)
![BTClock with custom font](doc/assets/btclock.gif)
(BTClock with custom font - Antonio SemiBold)
**NOTE**: C++ is not a language I'm experienced in. The quality of the code is probably bad and makes experienced C++ developers cry. For me it works, I do hope people will help making the code better through pull requests.
[V2 of the code](https://github.com/dsbaars/btclock_v2), to be used with a custom made PCB.
What you need to build this is:
- 7x 2.13 b/w eInk screens (the b/w/r don't have fast partial refresh, it should work but it's really slow).
- MCU (For this project you need an ESP32 with 4 MB Flash)
- MCU (For this project you need an ESP32 with 4 MB Flash)<br>
ESP32 S2 (like the Wemos S2 mini) does not have enough RAM, only the ESP32 and ESP32 S3 are tested and working. The ESP32 C6 only has one core and there is not recommended.
- 3D Printer to print the [case](https://www.thingiverse.com/thing:6009628)
- Soldering Iron (to solder the header pins)
- Some dupont wires are handy, but if you chain them using the 2x8 pin headers you don't necessarily need them.
@ -67,8 +72,3 @@ CS wire is <span style="color:blue">blue</span>, BUSY is <span style="color:purp
#### Wiring with DOIT ESP32 DevKit
![BTClock](doc/assets/esp32_doit_wiring.png)
#### Wiring with Wemos S2 Mini (change the pins in functions.cpp)
![BTClock](doc/assets/wemos_wiring.png)

BIN
doc/assets/btclock.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 780 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 221 KiB

View file

@ -19,7 +19,7 @@ upload_speed = 921600
board_build.partitions = partition.csv
lib_deps =
zinggjm/GxEPD2@^1.5.2
bblanchon/ArduinoJson@^6.21.1
bblanchon/ArduinoJson@^6.21.2
fbiego/ESP32Time@^2.0.0
https://github.com/me-no-dev/ESPAsyncWebServer.git

View file

@ -27,7 +27,7 @@ String currentShownTime = "";
uint32_t moment;
uint otaProgressValue;
void showMscwTime();
void showMscwTime();
void showBlockHeight();
void showBtcUsd();
void showSimpleTime();