pdf-icon

Arduino Quick Start

2. Devices & Examples

5. Extensions

6. Applications

Stamp-S3Bat Arduino Program Compilation & Upload

1. Preparation

2. Download Mode

Connect the device to the computer via a USB cable, long press the PWR button for about 3 seconds to enter download mode, and wait for burning.

3. Port Selection

Select the port corresponding to the device in the Arduino IDE.

4. Program Compilation & Burning

Paste the code below into the Arduino IDE workspace and click the upload button; the program will be automatically compiled and burned.

Hello World

cpp
1 2 3 4 5 6 7 8 9 10 11 12
#include "Arduino.h"

void setup()
{
    Serial.begin(115200);
}

void loop()
{
    delay(1000);
    Serial.println("Hello, world!");
}
On This Page