// E4.5 const int swPin = 11; void setup() { Serial.begin(9600); } void loop() { byte sw; sw = digitalRead(swPin); if (sw == LOW) { Serial.println("SW: On"); } else { Serial.println("SW: Off"); } }