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.
esp-recuperator/main/onewires.h

20 lines
323 B

2 years ago
/**
* Reading onewire sensors
*/
#ifndef ONEWIRES_H
#define ONEWIRES_H
#include <stdint.h>
#include "recup_types.h"
2 years ago
void onewires_setup();
int read_onewires(cels_t *a, cels_t *b);
2 years ago
extern volatile cels_t gTempSensors[2];
2 years ago
extern volatile bool tempSensorsOk;
extern volatile uint16_t gTempsSerial;
2 years ago
#endif //ONEWIRES_H