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
after updating to 2.7.0 from 2.6.0 or thereabouts (not exactly sure which version) the builtin LED does not blink anymore on SailorHat board where LED is on GPIO2.
I'm using same code as previously (except for updated libraries) and also tried with following minimal code:
#define LED_BUILTIN 2
#include "sensesp_app_builder.h"
using namespace sensesp;
reactesp::ReactESP app;
void setup() {
// Some initialization boilerplate when in debug mode...
#ifndef SERIAL_DEBUG_DISABLED
SetupSerialDebug(115200);
#endif
// Create the builder object
SensESPAppBuilder builder;
sensesp_app = builder.get_app();
// Start the SensESP application running
sensesp_app->start();
}
void loop() { app.tick(); }
Am I doing something wrong? I did try with minimal Arduino blinking sketch to confirm LED is still OK.
The text was updated successfully, but these errors were encountered:
Hi,
after updating to 2.7.0 from 2.6.0 or thereabouts (not exactly sure which version) the builtin LED does not blink anymore on SailorHat board where LED is on GPIO2.
I'm using same code as previously (except for updated libraries) and also tried with following minimal code:
Am I doing something wrong? I did try with minimal Arduino blinking sketch to confirm LED is still OK.
The text was updated successfully, but these errors were encountered: