forked from electro/esp-irblaster
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.
19 lines
323 B
19 lines
323 B
/**
|
|
* Reading onewire sensors
|
|
*/
|
|
|
|
#ifndef ONEWIRES_H
|
|
#define ONEWIRES_H
|
|
|
|
#include <stdint.h>
|
|
#include "recup_types.h"
|
|
|
|
void onewires_setup();
|
|
|
|
int read_onewires(cels_t *a, cels_t *b);
|
|
|
|
extern volatile cels_t gTempSensors[2];
|
|
extern volatile bool tempSensorsOk;
|
|
extern volatile uint16_t gTempsSerial;
|
|
|
|
#endif //ONEWIRES_H
|
|
|