recuperator fan control with esp32
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.
|
/**
|
|
* Reading onewire sensors
|
|
*/
|
|
|
|
#ifndef ONEWIRES_H
|
|
#define ONEWIRES_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void onewires_setup();
|
|
|
|
int read_onewires(int16_t *a, int16_t *b);
|
|
|
|
extern volatile int16_t gTempSensors[2];
|
|
extern volatile bool tempSensorsOk;
|
|
|
|
#endif //ONEWIRES_H
|
|
|