fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdint.h> // Add this line to include fixed-width integer types
  4.  
  5. int main() {
  6. uint16_t raw = 1565;
  7. double resistance = (((double)raw/4095.0) * 3.3)/0.1;
  8. printf("thermistor value: %.2fu\r\n", resistance);
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5272KB
stdin
Standard input is empty
stdout
thermistor value: 12.61u