24 lines
461 B
C
24 lines
461 B
C
/* This file is all the stuff I want to be
|
|
able to change without having to update the
|
|
source repository.
|
|
*/
|
|
|
|
#ifndef GLOBAL_H
|
|
#define GLOBAL_H
|
|
|
|
#define DEVICE_SW "0.0.1"
|
|
|
|
|
|
#define DEVICE_NAME "Glycol Chiller"
|
|
#define DEVICE_MDL "Chillenator v0.1"
|
|
#define DEVICE_MF "Damn Yankee Brewing"
|
|
|
|
#define ONE_WIRE_BUS D2
|
|
#define GLYCOL_RELAY D3
|
|
#define FERMA_RELAY D4
|
|
#define FERMB_RELAY D5
|
|
|
|
const size_t DOC_SIZE = JSON_OBJECT_SIZE(29) + JSON_ARRAY_SIZE(4);
|
|
|
|
#endif
|