full size test

This commit is contained in:
Dmitry Borisenko
2020-06-19 02:31:56 +02:00
parent 5bec53e6c2
commit 5494f61267
25 changed files with 807 additions and 151 deletions

View File

@@ -39,8 +39,6 @@ String jsonWriteFloat(String& json, String name, float volume) {
return json;
}
//============================================================================================================
//=============================================BIT AND BYTE===================================================
uint8_t hexStringToUint8(String hex) {
uint8_t tmp = strtol(hex.c_str(), NULL, 0);
if (tmp >= 0x00 && tmp <= 0xFF) {