Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: net 1-wire lpc1768 crypto clock web fram log
heating/boiler.h
- Committer:
- andrewboyson
- Date:
- 2020-06-10
- Revision:
- 91:8b192efd0288
- Parent:
- 48:6eac12df3ad5
- Child:
- 104:46ce1aaf8be7
File content as of revision 91:8b192efd0288:
#include <stdbool.h> #include <stdint.h> extern int BoilerGetTankSetPoint (void); extern void BoilerSetTankSetPoint (int value); extern int BoilerGetTankHysteresis (void); extern void BoilerSetTankHysteresis (int value); extern int BoilerGetRunOnResidual16ths(void); extern void BoilerSetRunOnResidual16ths(int value); extern int BoilerGetRunOnTime (void); extern void BoilerSetRunOnTime (int value); extern uint16_t BoilerGetTankDS18B20Value (void); extern uint16_t BoilerGetOutputDS18B20Value(void); extern uint16_t BoilerGetReturnDS18B20Value(void); extern bool BoilerCall; extern bool BoilerPump; extern int BoilerInit(void); extern void BoilerMain(void);