Hi, when im using my mpu-6050 library at stm32f411ceu i cant get the output value on the serial monitor.
However using the same library with arduino uno, i can get the output value on serial monitor.
here is the code i use :
https://drive.google.com/drive/folders/1yVq0ZwqGJ7ljPD7LJFN2jzLwnTj0wvyf ...
Search found 6 matches
- Sat Jul 10, 2021 8:43 am
- Forum: General discussion
- Topic: Problem using MPU-6050 on STM32F411CEU
- Replies: 0
- Views: 1864
- Sat Jul 10, 2021 8:30 am
- Forum: Let us know a bit about you and your projects
- Topic: Filan From Indonesia
- Replies: 0
- Views: 2000
Filan From Indonesia
Hello everybody, my name is Filan Kelvin from indonesia. i use stm32 for robotic competition. hope we can share knowledge together!
- Sat Jul 10, 2021 8:11 am
- Forum: General discussion
- Topic: [Solved]Cant use Serial.print in setup()
- Replies: 8
- Views: 7539
Re: Cant use Serial.print in setup()
Yeah the while was the solution, im still new to use this stm32duino so i'd need to learn much things
- Sat Jul 10, 2021 6:35 am
- Forum: General discussion
- Topic: [Solved]Cant use Serial.print in setup()
- Replies: 8
- Views: 7539
Re: Cant use Serial.print in setup()
Thanks it worked! i just try to print something in setup() in my project but i found out its not working.
thank you for the support guys
thank you for the support guys
- Fri Jul 09, 2021 4:07 pm
- Forum: General discussion
- Topic: [Solved]Cant use Serial.print in setup()
- Replies: 8
- Views: 7539
Re: Cant use Serial.print in setup()
i use this settings for my code
- Fri Jul 09, 2021 12:34 pm
- Forum: General discussion
- Topic: [Solved]Cant use Serial.print in setup()
- Replies: 8
- Views: 7539
[Solved]Cant use Serial.print in setup()
Hi, i got issues when i try to use Serial.print func in setup(). Here the code i use
I use STM32F411CEU6 Board, thank you!
Code: Select all
void setup() {
Serial.begin(115200);
Serial.print("Hello, World");
}
void loop() {
}