; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
[env:uno]
platform = atmelavr
board = uno
framework = arduino
monitor_port = COM8
monitor_speed = 9600
this is my platformioi.ini file
my main.cpp is
#include <Arduino.h>
void setup() {
// Initialize serial communication
Serial.begin(9600);
// Print "Hello, World!" to the serial monitor
Serial.println("Hello, World!");
}
void loop() {
// Your main loop code here
}