serial test

This commit is contained in:
Martin Girard
2026-09-10 11:58:20 +02:00
parent 810d44a032
commit 5cc1052f95
2 changed files with 5 additions and 1 deletions
+1
View File
@@ -12,3 +12,4 @@
platform = atmelavr
board = megaatmega2560
framework = arduino
monitor_speed = 115200
+4 -1
View File
@@ -5,9 +5,12 @@
void setup() {
// put your setup code here, to run once:
int result = myFunction(2, 3);
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("test");
int value = analogRead(A1);
Serial.println(value);
}