Ed Bruck
Ed Bruck
Thanks for doing this update!
Are you still seeing this? If so, can you try a small code change for me?
@eLBati Can you make this change and see if the problem persists? ``` cpu_load = int(CPUsage(interval=0.2).result) - image_idx = cpu_load / (100/(APP_NUM_IMAGES-1)) + image_idx = cpu_load / (100.0/(APP_NUM_IMAGES-1)) ```
@eLBati Did it help?
@eLBati Sorry my mistake. Please patch like this: ``` cpu_load = int(CPUsage(interval=0.2).result) - image_idx = cpu_load / (100/(APP_NUM_IMAGES-1)) + image_idx = int(cpu_load / (100.0/(APP_NUM_IMAGES-1))) ```
Was this at system startup? I think here may be something weird going on when reading /proc/stat. I'll look at putting in checks to prevent it from using a bad...
Could you please post the output from: `lsb_release -a`
Could you try changing package/CMakeLists.txt line 58 to this and see if helps? `if (${RELEASE} STREQUAL "22.04" OR ${RELEASE} STREQUAL "21")` Edit: wrong line number
Not sure why that doesn't work for you. Try reverting the line and change "22.04" to "21" instead.
@stekturku I believe there is a bug here and I am investigating, but in the mean time if you use your mouse wheel over radiotray-ng's icon to adjust the volume...