Files

  • Not Found
  • Invalid object requested. SHA must identify a commit or a tree.
Last update 5 months 3 weeks by Stephen Crane
Fileshub
..
.gitignore
Makefile
README.md
lcd.cpp
mqtt.cpp
mux.cpp
mysql.cpp
nodes.txt
rrd.cpp
sensorhub.cpp
sensorlib.cpp
sensorlib.h
services.sh
status.cpp
sensorlib.h
#ifndef __SENSORLIB_H__ #define __SENSORLIB_H__ class sensor { public: char short_name[5]; unsigned light; float temperature, humidity, battery; unsigned node_id, node_time, node_status, msg_id; unsigned node_type, domoticz_id; int to_csv(char *buf, int len); int from_csv(char *buf); bool is_wireless() { return node_type == 0; } bool is_valid() { return node_id > 0; } }; void daemon_mode(); void fatal(const char *fmt, ...); int host_port(const char *hostport, int defport, char *host, int size); int connect_nonblock(const char *host, int defport); int on_connect(int sock); int connect_block(const char *host, int defport); int sock_read_line(int sock, char *buf, int len); #endif
Report a bug