//Testing the Arduino board on EduBase V2. /* Before you use the EduBase-V2 board make sure your Arduino Nano is working using this program. Insert the Ardiono Nano into the socket of the EduBase v2 board 1. In Tools, under Board choose Arduino Nano 2a. In Tools, under Processor choose "ATmega328P: Old Bootloader" 2b.If your Arduino is newer version, then choose ATmega328P 3a. In Tools, under Port choose your COMx port. 3b.On your PC, under Setting check the Devices. You can see which COM ports is used for USB. Now Compile and download the program and see if on-board LED of Arduino Nano toggle. Change the delay and test it again couple of times. You can test your Nano board independant of EduBase V2 board */ void setup() { // initialize digital pin LED_BUILTIN as an output. pinMode(LED_BUILTIN, OUTPUT); } // the loop function runs forever void loop() { digitalWrite(LED_BUILTIN, HIGH); // turn the LED on delay(200); // wait for a 1/5 second digitalWrite(LED_BUILTIN, LOW); // turn the LED off delay(200); // wait for a 1/5second }