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
The line gave a compile time error while porting code to esp32. int motorPWM,index=0, prev_index,i, wait_cycles,cycle_number, cycles_lost,index_last_motion;
Variable name index =0
Error
char *to int conversation fail
all index had to be renamed.
to something like index_somename
The text was updated successfully, but these errors were encountered:
This was on platform.io compiled for esp32 . Not checked on a clean install of platform.io I suspect
one the name "Index" was defined on one of the libraries I have as global . It is not a bug it may be
related to my setup. The reason for the compile
Is to try do the project on a more modern chip where memory is not a issue.
No More no Less not a bug or a Issue.
I my forked of the code
ESP32 Rotary Encoder Touch TFT SD .
Wifi BLE MQTT
The line gave a compile time error while porting code to esp32.
int motorPWM,index=0, prev_index,i, wait_cycles,cycle_number, cycles_lost,index_last_motion;
Variable name
index =0
Error
char *to int conversation fail
all
index
had to be renamed.to something like
index_somename
The text was updated successfully, but these errors were encountered: