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/radiator.h
- Committer:
- andrewboyson
- Date:
- 2019-05-06
- Revision:
- 57:72c1c1357861
- Parent:
- 48:6eac12df3ad5
- Child:
- 95:97621bfbedfa
File content as of revision 57:72c1c1357861:
#include <stdbool.h>
#include <stdint.h>
extern bool RadiatorGetWinter (void); extern void RadiatorSetWinter (bool value); extern void RadiatorChgWinter (void);
extern bool RadiatorGetOverride (void); extern void RadiatorSetOverride (bool value); extern void RadiatorChgOverride(void);
extern uint16_t RadiatorGetHallDS18B20Value(void);
extern int RadiatorGetNightTemperature(void); extern void RadiatorSetNightTemperature(int value);
extern int RadiatorGetFrostTemperature(void); extern void RadiatorSetFrostTemperature(int value);
extern bool RadiatorPump;
extern int RadiatorInit(void);
extern void RadiatorMain(void);