Search found 2 matches

by andreealombardo
Tue Nov 23, 2021 8:23 pm
Forum: General discussion
Topic: Serial comunication beetwen Arduino and STM32 F401RE with Arduino ide
Replies: 4
Views: 3640

Serial comunication beetwen Arduino and STM32 F401RE with Arduino ide

How can I pass through the serial ports an arduino number to the STM32 F401RE? Using the Arduino IDE? For now I have done this:
(i should do all this using just the arduino ide)

Code Arduino (TX)

int valueTX=5;

void setup() {
Serial.begin(9600);
}

void loop() {
Serial.print(valueTX ...

Go to advanced search