/*Create the circuit of Arduino Uno, LED, and Slide Switch being.
1. Connect Slider switch sw1:2 terminal with to pin 13 of Arduino
2. Connect Slider switch sw1:1 terminal with LED led1:A terminal
3. Connect LED led1:C terminal with the GND Pin of Arduino
*/
void setup() {
// put your setup code here, to run once:
pinMode(13, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(13, HIGH);
}