//Code to test the hello.bus.45.bridge board with serial communication and a led. #include SoftwareSerial mySerial(3, 4); int pot_data = 0; int pot_pin = A1; //Pin7 of the ATtiny45 int led_pin = 0; //Pin5 of the ATtiny45 void setup() { mySerial.begin(9600); pinMode(led_pin, OUTPUT); } void loop() { digitalWrite(led_pin, LOW); mySerial.println("Funciona!"); }