I am having an issue with getting my electron to publish to cloud. The code uploads just fine, I get the pulsing blue light and also a successful flash event on my event log. Nothing else is logged after that.
Here is the simple sketch:
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.printf("OK");
Particle.publish("hello");
delay(10000); // Wait for 10 seconds
}