Skip to content

Instantly share code, notes, and snippets.

#define RELAY_PIN D2
void setup() {
pinMode(RELAY_PIN, OUTPUT);
digitalWrite(RELAY_PIN, LOW);
Particle.function("activateStrobe", activateStrobe);
}
void loop() {
// Nothing here