123456789101112131415161718 |
- /*
- * openhab.h
- *
- * Created on: May 25, 2019
- * Author: sebastian
- */
- #ifndef OPENHAB_H_
- #define OPENHAB_H_
- #define OPENHAB_IP "192.168.0.10" // IP of openhab instance
- #define OPENHAB_PORT 8080 // Port
- #define OPENHAB_URI "/rest/items/KaffeeOn/state"
- void openhabInit(void);
- void *httpTimerHandler(void *threadid);
- #endif /* OPENHAB_H_ */
|