Skip to content
Snippets Groups Projects
Commit ab4db036 authored by abp1g20's avatar abp1g20
Browse files

Replace main.c

parent 6202c757
No related branches found
No related tags found
No related merge requests found
...@@ -7,17 +7,19 @@ ...@@ -7,17 +7,19 @@
#include "lib/fonts.h" #include "lib/fonts.h"
#include "lib/st7735.h" #include "lib/st7735.h"
//this task covers how to use the on-board temperature sensor in the RP2040 chip on the Raspberry pi Pico /*
//it uses the analogue to digital converter (ADC) in the Pico to read the internal temperature of the RP2040 and this task covers how to use the on-board temperature sensor in the RP2040 chip on the Raspberry pi Pico
//does the necessary data conversion to output the temperature of the chip it uses the analogue to digital converter (ADC) in the Pico to read the internal temperature of the RP2040 and
does the necessary data conversion to output the temperature of the chip
//also covers how to perform the required data processing to take the raw ADC output and convert it
//into a voltage and then into temperature also covers how to perform the required data processing to take the raw ADC output and convert it
into a voltage and then into temperature
//the temperature sensor might not be calibrated so temperatures might differ in different
//boards due to manufacturing inconsistencies the temperature sensor might not be calibrated so temperatures might differ in different
//as such, if you will be using this in a serious project that requires an accurate temperature value, boards due to manufacturing inconsistencies
//I would recommend using an external sensor. as such, if you will be using this in a serious project that requires an accurate temperature value,
I would recommend using an external sensor.
*/
int main() { int main() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment