15 lines
300 B
C
15 lines
300 B
C
#pragma once
|
|
|
|
#include <Temperature_LM75_Derived.h>
|
|
#include "PWM_Output.h"
|
|
#include "system.h"
|
|
|
|
extern TSENSOR_SETTINGS *t_settings;
|
|
extern TI_TMP102_Compatible *tSensor;
|
|
|
|
void Init_TSensor(uint8_t addr, TSENSOR_SETTINGS *tsettings);
|
|
void UpdateFanControl(float temperature, PWM_Output* pwmOut);
|
|
|
|
|
|
|