You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
252 B
16 lines
252 B
#ifndef __NTC_H__
|
|
#define __NTC_H__
|
|
|
|
/*
|
|
50°: 48.81 * 20uA = 976
|
|
100°: 6.744 * 20uA = 135
|
|
105°: 5.853 * 20uA = 117
|
|
*/
|
|
|
|
#define NTC_50 976
|
|
#define NTC_100 135
|
|
#define NTC_105 117
|
|
|
|
void ntc_init(void);
|
|
void ntc_run(void);
|
|
#endif
|
|
|