Arduino Quick Start Guide
To get started with Arduino, complete a few simple steps to install the required software.
1. Install Arduino IDE
If you haven't installed it yet, download and install the Arduino IDE from the official website.
2. Install Dasduino board definitions
If you have a Dasduino or Inkplate board, you will have to install the board definitions. These are like complete packages of software so that Arduino can compile and upload your code correctly.
Copy the following URL:
https://github.com/SolderedElectronics/Dasduino-Board-Definitions-for-Arduino-IDE/raw/master/package_Dasduino_Boards_index.json
And add it to the Additional boards manager URLs
in Arduino settings:
Now, you can open the Boards Manager, search for Dasduino, and install the board definition for your specific board. Check the definition's description to ensure your board is included in that specific definition!
3. Connect the Dasduino board via USB
Use the provided USB-C cable to connect the Dasduino board to your computer.
4. Connections
To test if everything is working, we will use a basic circuit that consists of a single LED, a resistor, and two wires.
5. Upload your first code
In this example, we will use a modified version of the premade example called Blink
to test if everything is running correctly. Simply copy the code below into the Arduino IDE.
void setup() {
// Initialize pin 14 as OUTPUT
pinMode(14, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(14, HIGH); // turn the LED on
delay(1000); // wait for a second
digitalWrite(14, LOW); // turn the LED off
delay(1000); // wait for a second
}
Click on the Board and port select
dropdown menu and select the Select other board and port
button.
Search for your specific board. In this example, we use DasduinoCONNECTPLUS. Select the port to which the board is connected. If more ports are available, in most cases the correct port is the one with the largest number in its name.
Upload the code to the board by pressing the Upload
button in the top left corner.
If all of the steps were completed correctly, your LED should blink.