Also propably needs a MAX2323 to work.

This commit is contained in:
YuruC3
2025-05-10 10:19:10 +02:00
parent 8525da4004
commit a17eb70ce0
5 changed files with 67 additions and 19 deletions

View File

@@ -0,0 +1,22 @@
#include <Arduino.h>
// UART2 (PA3 = RX, PA2 = TX)
HardwareSerial mdSerial(PA10, PA9);
// HardwareSerial sigma(PA9, )
void setup() {
mdSerial.begin(38400);
}
void loop() {
mdSerial.write("skibidi");
delay(5000); // wait before next loop
}