Some time ago (actually it was probably two years ago) I built a watch from ping pong balls. Following the guide here:
The watch was lying around for a long time gathering dust because I didn’t have time to write any interesting and functional software (automatic dimming, displaying effects after presence detection, energy saving modes, time synchronization with the Internet, etc.)
Fortunately, I found a mod for the WLED software that allows you to control such a clock.
In the first step, I compiled the version with the mod using this German suspicious website:
Generally, something worked, unfortunately the numbers do not display correctly. The author of the mod emphasizes that it was made according to the instructions, but there was a discrepancy somewhere and the numbers were different. It’s a pity that the mod documentation is so lacking in content.
Anyway, to run the watch I have to change the mapping of the balls and numbers. It’s actually not difficult. The problem is compiling with this mod. Since the German website works, I assume that the mod itself is written correctly.
In the first step, I installed VS Code, Platforiom and other add-ons. I managed to compile the base version correctly. I thought it would be downhill from there, but unfortunately there was a collision with the compiler.
I tried to create my own variant of compilation like this.
In the file
platformio_override.ini
I posted such an entry.
[platformio]
default_envs = esp32dev_ping_pong[env:esp32dev_ping_pong]
board = esp32dev
platform = ${esp32.platform}
platform_packages = ${esp32.platform_packages}
custom_usermods = audioreactive
build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags} ${esp32.build_flags} -D WLED_RELEASE_NAME="ESP32" #-D WLED_DISABLE_BROWNOUT_DET
-D USERMOD_PING_PONG_CLOCK
And I added such an entry to the file
platformio.ini
default_envs = esp32dev_ping_pong
I also selected the environment from the added bar
The compilation results are presented in the text file below
Errrors.txt (4.9 KB)
Generally, you can see that some libraries are missing, specifically this one:
LITTLEFS.h:35:23: fatal error: flash_hal.h: No such file or directory
However, trying to add it manually ends with displaying errors related to the lack of other libraries… So the shortcut did not work
I decided to do one more test, to modify my compilation variant so that it does not contain changes something like this:
Now, apart from the new configuration name, nothing should change?
[platform]
default_envs = esp32dev_ping_pong
[env:esp32dev_ping_pong]
board = esp32dev
platform = ${esp32.platform}
platform_packages = ${esp32.platform_packages}
#custom_usermods = audioreactive
build_unflags = ${common.build_unflags}
build_flags = ${common.build_flags} ${esp32.build_flags} -D WLED_RELEASE_NAME="ESP32" #-D WLED_DISABLE_BROWNOUT_DET
Unfortunately I still get the same errors…
Maybe I’m doing something very stupid, I’ll fight and maybe I’ll come up with something.