Your First Code “Hello! 14Core” in Arduino
1. Download and install the Arduino development environment board.
2. Connect the Arduino board with a USB cable to a PC/MAC and install drivers
3. Open the Arduino application
4. Select your board and serial port
5. Upload your first sketch
Here is your first sketch
1 2 3 4 5 6 7 8 9 10 |
void setup() { Serial.begin(9600); // opens serial port, sets data rate to 9600 bps Serial.println("Hello! 14Core!"); } void loop() { } |
Your First Code “Hello! 14Core” in Arduino