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
[STALE_SET] This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions.
I have tried a few ESP32 boards & the built-in hall sensor does not work with v1.0.5 or newer. When I revert to v1.0.4, it works perfectly.
int val;
void setup() {
Serial.begin(115200);
}
void loop() {
val = hallRead();
Serial.print("Hall Sensor Reading: ");
Serial.println(val);
delay(200);
}
The text was updated successfully, but these errors were encountered: