Back to Parent

const int LEDPIN0 = D0;
const int LEDPIN1 = D1;

void setup() {
    pinMode(LEDPIN0, OUTPUT);
    pinMode(LEDPIN1, OUTPUT);
    
    //Making a Connected LED
    digitalWrite(LEDPIN0, LOW);
    
    Particle.function("led", ledControl);
}

void loop() {
}

int ledControl2(String command)
{
   int state = LOW;

   // find out the state of the led
   if(command == "HIGH"){
	   state = HIGH;
   }else if(command == "LOW"){ 
	   state = LOW;
   }else{
	   return -1;
   }

   // write to the appropriate pin
   digitalWrite(LEDPIN0, state);
   digitalWrite(LEDPIN1, state);
   return 1;
}
Click to Expand

Content Rating

Is this a good/useful/informative piece of content to include in the project? Have your say!

0