Добавить
Уведомления

Beginner Serial Port Debugging UART - Microprocessor

void setup() { // put your setup code here, to run once: Serial.begin(9600); Serial.println("starting Simple UART test"); } void loop() { // put your main code here, to run repeatedly: Serial.print("My Name is Ralph "); delay(1000); Serial.println("Turchiano"); delay(1000); } #UART #Debugging #Microprocessor

12+
18 просмотров
2 года назад
12+
18 просмотров
2 года назад

void setup() { // put your setup code here, to run once: Serial.begin(9600); Serial.println("starting Simple UART test"); } void loop() { // put your main code here, to run repeatedly: Serial.print("My Name is Ralph "); delay(1000); Serial.println("Turchiano"); delay(1000); } #UART #Debugging #Microprocessor

, чтобы оставлять комментарии