You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting the error:
invalid conversion from 'const char*' to 'const uint8_t* {aka const unsigned char*}' [-fpermissive]
trying to compile with both arduino 1.6.x and 1.8.x
The text was updated successfully, but these errors were encountered:
I resolved this by changing the 'const char' on line 166 to 'const unsigned char'
Furthermore, I needed to edit the wifimanager code to remove/comment-out line 301 which initializes StartWPS. The WPS code in wifimanager wasnt allowing the program to compile correctly.
I'm getting the error:
invalid conversion from 'const char*' to 'const uint8_t* {aka const unsigned char*}' [-fpermissive]
trying to compile with both arduino 1.6.x and 1.8.x
The text was updated successfully, but these errors were encountered: