├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── data └── index.html ├── schematics ├── SACI Fermentation PCB.svg ├── SACI PCB Diagram.cdr ├── SACI PCB Diagram.jpg ├── SACI PCB.pdf └── Saci Fermentation Control - V2.fzz └── src ├── BangController.cpp ├── BangController.h ├── DS18B20.cpp ├── DS18B20.h ├── WebInterface.cpp ├── WebInterface.h ├── config.sample.h ├── main.cpp └── plugins ├── InfluxDB.cpp ├── InfluxDB.h ├── Mqtt.cpp ├── Mqtt.h ├── ThingSpeak.cpp ├── ThingSpeak.h ├── UDPLog.cpp └── UDPLog.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/README.md -------------------------------------------------------------------------------- /data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/data/index.html -------------------------------------------------------------------------------- /schematics/SACI Fermentation PCB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/schematics/SACI Fermentation PCB.svg -------------------------------------------------------------------------------- /schematics/SACI PCB Diagram.cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/schematics/SACI PCB Diagram.cdr -------------------------------------------------------------------------------- /schematics/SACI PCB Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/schematics/SACI PCB Diagram.jpg -------------------------------------------------------------------------------- /schematics/SACI PCB.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/schematics/SACI PCB.pdf -------------------------------------------------------------------------------- /schematics/Saci Fermentation Control - V2.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/schematics/Saci Fermentation Control - V2.fzz -------------------------------------------------------------------------------- /src/BangController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/BangController.cpp -------------------------------------------------------------------------------- /src/BangController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/BangController.h -------------------------------------------------------------------------------- /src/DS18B20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/DS18B20.cpp -------------------------------------------------------------------------------- /src/DS18B20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/DS18B20.h -------------------------------------------------------------------------------- /src/WebInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/WebInterface.cpp -------------------------------------------------------------------------------- /src/WebInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/WebInterface.h -------------------------------------------------------------------------------- /src/config.sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/config.sample.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/plugins/InfluxDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/plugins/InfluxDB.cpp -------------------------------------------------------------------------------- /src/plugins/InfluxDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/plugins/InfluxDB.h -------------------------------------------------------------------------------- /src/plugins/Mqtt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/plugins/Mqtt.cpp -------------------------------------------------------------------------------- /src/plugins/Mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/plugins/Mqtt.h -------------------------------------------------------------------------------- /src/plugins/ThingSpeak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/plugins/ThingSpeak.cpp -------------------------------------------------------------------------------- /src/plugins/ThingSpeak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/plugins/ThingSpeak.h -------------------------------------------------------------------------------- /src/plugins/UDPLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/plugins/UDPLog.cpp -------------------------------------------------------------------------------- /src/plugins/UDPLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalexandre0/saci-temperature-controller/HEAD/src/plugins/UDPLog.h --------------------------------------------------------------------------------