Ping Pong LED Clock instalation issue

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
VisualStudio

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.

I made following test, i have changed env to something like this:

[platformio]
default_envs = esp32dev_ping_pong
[env:esp32dev_ping_pong]
extends = env:esp32dev

I assumed that this will give me the same result as vanilla version?
But i still got bunch of errors during compilation.

Errrors.txt (3.2 KB)

I do not understand how this is possible?

Just wondering if you could solve this with a custom ledmap of your watch ?

Just wondering if you could solve this with a custom ledmap of your watch ?

Do you mean to change the hardware configuration of the LED?
As for the software change of the LED mapping, this is how I want to do it, but I need to compile the WLED with this change…

The change is being considered, but I’m afraid that it could involve too much reconstruction of the whole.

Well, unless it will actually be impossible to recompile this software…

I am referring to software ledmaps. Is it not possible to add the custom ledmap once WLED is installed or is there no WiFi access once installed?

Take a look at this mapping tutorial by @dbmaking

Looks interesting i give it a try i tell if its works
Well after some thinking I worry about animations if I i remap Pixels under clock numbers the animated background will by broken…

I checked the mod files again. It seems to me that the mod itself contains an incorrect matrix describing the numbers on the clock.
This is the fragment describing the shift of digits. You can find the following values ​​in the source file:

int baseH = 43; // Address for the one place of the hours
int baseHH = 7; // Address for the tens place of the hours
int baseM = 133; // Address for the one place of the minutes
int baseMM = 97; // Address for the tens place of the minutes
int colon1 = 79; // Address for the first colon led
int colon2 = 80; // Address for the second colon led

Meanwhile, 126 balls are used in the project. So it is not possible to get these values.

I somehow menage to compile and install with this override:

[platformio]
default_envs = esp32dev_ping_pong
[env:esp32dev_ping_pong]
extends = env:esp32dev
upload_speed = 921600
build_flags = ${common.build_flags} ${esp32.build_flags}
    -D WLED_RELEASE_NAME=\"ESP32_MULTI_USREMODS\"
   # -D SERVERNAME = \"ESP32_MULTI_USREMODS\"
    -D WLED_ENABLE_USERMOD_PAGE # if created
    -D USERMOD_DEEP_SLEEP
    -D USERMOD_PING_PONG_CLOCK

I got following output:

Leaving...
Hard resetting via RTS pin...
=========================================================== [SUCCESS] Took 26.71 seconds ===========================================================

Environment         Status    Duration
------------------  --------  ------------
esp32dev_ping_pong  SUCCESS   00:00:26.712
=========================================================== 1 succeeded in 00:00:26.712 =========================================================== 
 *  Terminal will be reused by tasks, press any key to close it.

But after i logged in i see this :frowning:

Usermods configruation not found

Ok so a edit platformio.ini and put there this:

[env:esp32dev]

board = esp32dev

platform = ${esp32.platform}

platform_packages = ${esp32.platform_packages}

custom_usermods = usermod_v2_ping_pong_clock audioreactive

build_unflags = ${common.build_unflags}

build_flags = ${common.build_flags} ${esp32.build_flags} -D WLED_RELEASE_NAME=\"ESP32\" #-D WLED_DISABLE_BROWNOUT_DET

lib_deps = ${esp32.lib_deps}

monitor_filters = esp32_exception_decoder

board_build.partitions = ${esp32.default_partitions}

Now it is works :smiley:

Im attaching here correct usermod_v2_ping_pong_clock.cpp and precompiled version for future generations
firmware.bin (1.3 MB)
usermod_v2_ping_pong_clock.cpp.txt (3.8 KB)

1 Like