Uploaded 4.3 version with TT-GO 1.14 display
Trial to adapt the ESP32 miner to the Lilygo TT-GO 1.14 WIP Seems to crash after a while I am using Bodmer's tft_eSPI library There is also a config file in the library folder to make the onboard display recognized, it is not uploaded here
New version of the mining screen changed font
Uploaded latest code with st7735 display
Added today the ESP32-2432S028 CYD Duinocoin Miner with clock, calendar and balance display. I also uploaded a binary for those who can't or don't want to compile by themselves.
Based on the original code, I made a fork and applied the code to it, fixing a bug, but only adding support for ESP32-2432S028.
When calling the user API, it did not return the same result, because although it changed the username, it returned the username as the value.
In addition to resolving the conflict with the original code,
What is the best way to apply this code? Do I make a pull request on the original?
https://github.com/Revers-BR/duino-coin
You can submit your PR, but I would have corrected what was causing issue for the ESP2432S028 without removing the other possible displays so users having these can still flash their boards. Anyway, I wonder if the miner should stay "universal" or maybe create separate folders for special displays ? Something only Revox can tell us :)
Also, I don't understand well what the issue was ? "When calling the user API, it did not return the same result, because although it changed the username, it returned the username as the value." Do you mean the way the user data was fetched returned always the same user ? (me ?)
the problem with me was that instead of returning the username value that was defined in settings, it returned the variable as name
ex:
user = "Revers" print(user)//Revers user = "Revers" print(user)//user
that's what happened to me
Your fix is in this part of the code ?
So I may fix mine as well. It was working for me though, but my coding skills are not that great :)
I didn't find any problem, it's working for me.