diff --git a/Bench-Data-Firmware/platformio.ini b/Bench-Data-Firmware/platformio.ini index 67e8cb2..4dcf2a8 100644 --- a/Bench-Data-Firmware/platformio.ini +++ b/Bench-Data-Firmware/platformio.ini @@ -12,3 +12,4 @@ platform = atmelavr board = megaatmega2560 framework = arduino +monitor_speed = 115200 \ No newline at end of file diff --git a/Bench-Data-Firmware/src/main.cpp b/Bench-Data-Firmware/src/main.cpp index ddfaa61..25d5c7d 100644 --- a/Bench-Data-Firmware/src/main.cpp +++ b/Bench-Data-Firmware/src/main.cpp @@ -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); } \ No newline at end of file