Questions tagged [led]

A light-emitting diode (LED) is a semiconductor light source. LEDs are used as indicator lamps in many devices.

A light-emitting diode (LED) is a semiconductor light source. LEDs are used as indicator lamps in many devices, like mobile phones or micro-controller boards.

798 questions
-4
votes
1 answer

error expected unqualified-id before numeric constant help me

This is my code to use a button: int estado = 0 void setup(){ pinMode(8, INPUT); pinMode(4, OUTPUT) } void loop(){ estado = digitalRead(8); if(estado == HIGH){ digitalWrite(4, HIGH); } else { digitalWrite(4, LOW); } }
-4
votes
1 answer

LED illumination in iOS 6

Can anyone show me an example of how to use the following method: (BOOL)setTorchModeOnWithLevel:(float)torchLevel error:(NSError **)outError
thokthak
  • 41
  • 5
1 2 3
53
54