stm32f103 clones
Posted: Sat Aug 17, 2024 6:50 pm
this is a plain old topic
https://hackaday.com/2020/10/22/stm32-c ... -the-ugly/
viewtopic.php?t=2038
https://hackaday.com/2020/10/22/stm32-c ... -the-ugly/
viewtopic.php?t=2038
Everything relating to using STM32 boards with the Arduino IDE and alternatives
https://www.stm32duino.com/
Code: Select all
// specs 5.3.19 temp sensor characteristics
// V 25 deg ~ 1.43v
// slope 4.3 mv/C
float temp = (mv - 1430) * 1.0 / 4.3 + 25.0;
room temperature is 30 deg C (around there)temp sensor analogRead:1597, mvolt:1271, temp(deg C:)-11.98
temp sensor analogRead:1590, mvolt:1266, temp(deg C:)-13.14