mirror of https://github.com/LaskaKit/ESPlan.git
15 lines
367 B
C
Executable File
15 lines
367 B
C
Executable File
#ifndef WS_SNR_H
|
||
#define WS_SNR_H
|
||
/*
|
||
* snr.h – Detekce variant snímače a čtení dat
|
||
*/
|
||
|
||
#include "cfg.h"
|
||
#include "mb_client.h"
|
||
|
||
void detectSensors(ModbusClient& mb, SensorData& data, const SensorConfig& cfg);
|
||
void readAllSensors(ModbusClient& mb, SensorData& data, const SensorConfig& cfg);
|
||
void printSensorStatus(const SensorData& data);
|
||
|
||
#endif // WS_SNR_H
|