Search found 2 matches
- Wed Nov 24, 2021 8:19 am
- Forum: General discussion
- Topic: Serial comunication beetwen Arduino and STM32 F401RE with Arduino ide
- Replies: 4
- Views: 3640
Re: Serial comunication beetwen Arduino and STM32 F401RE with Arduino ide
I'm using STM32F401RE, with core Arm Cortex-M4
- 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 ...
(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 ...