Ricky6633
Ricky6633
Yes i checked the Hacking Guide This is what the guide suggests // -- Update Thing name strncpy( iotWebConf.getThingNameParameter()->valueBuffer, "My changed name", iotWebConf.getThingNameParameter()->getLength()); iotWebConf.saveConfig(); to update values by hand, thats...
->valueBuffer is the classic way, ->value() is the Typed-way to access the value of the parameter. Ah.. that makes more sense Well i dont know how to explain it differently......
floatParam.valueBuffer() I just need this one above, basicly i just need to write uint8_t values to the two hidden parameters i created and if it works that way it would...
Ah thanks, just "myParam.valueBuffer" works, since its a uint_8 im unsure if itoa works since it takes a int instead, (and i forgot to mention that its actually a uint8_t...
hmm since the uint8_t array i have to save has also a value from 0 to 255 for a byte it would be quite complicated to save the value (maybe...
I "fixed" the problem with converting the needed uint8_t to the char array everything seems to work now But i found out that i can also just use the created...
Thanks alot for the fast reply `void CheckWifiStatus() { if (iotWebConf.getState() == 2) { wlanConnected = false; } else if (iotWebConf.getState() == 4) { wlanConnected = true; } }` did...
Would you have a example of how to use the enum constant instead of the "raw values" ? I actually just need to know if ap mode is on OR...
Boot, NotConfigured, ApMode, Connecting, OnLine, OffLine Ah well, i found the states, im wondering what time "NotConfigured" and "OffLine" is active i updated my code as follows so far if...
UG82_UC1701_MINI12864_1_4W_HW_SPI *u8g2; u8g2 = new UG82_UC1701_MINI12864_1_4W_HW_SPI(U8G2_R0, CS_PIN, RS_PIN, RST_PIN); Tho, i changed a bit on my code and the exception gets throws now (consistently) at another point in my code...