Brewhouse/lib/Global/Global.h
Chris Giacofei 74806fe198 Lots of changes.
Closer to a working model. 2-way communication is working and
devices can report temperature readings.

Need to get the actual control logic done and clean this garbage up.
2023-01-26 16:53:50 -05:00

21 lines
414 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 FERMENTER_COUNT 2
#define ONE_WIRE_BUS D2
const size_t DOC_SIZE = JSON_OBJECT_SIZE(29) + JSON_ARRAY_SIZE(4);
#endif