Skip to content

Instantly share code, notes, and snippets.

@katsuyoshi
Created October 3, 2023 09:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save katsuyoshi/1338a215cf3134b9df606b10868b2cde to your computer and use it in GitHub Desktop.
Save katsuyoshi/1338a215cf3134b9df606b10868b2cde to your computer and use it in GitHub Desktop.
M5Stack StampS3 Project on PlatformIO
#include <Arduino.h>
void setup() {
Serial.begin(115200);
}
void loop() {
Serial.print(".");
delay(1000);
}
[env:m5stack-stamps3]
platform = espressif32
board = m5stack-stamps3
framework = arduino
monitor_speed = 115200
build_flags =
-DARDUINO_USB_MODE
-DARDUINO_USB_CDC_ON_BOOT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment