Dependencies: net 1-wire lpc1768 crypto clock web fram log
/media/uploads/andrewboyson/heating.sch
/media/uploads/andrewboyson/heating.brd
/media/uploads/andrewboyson/eagle.epf
http-derived/radiator/http-radiator-ajax.c@48:6eac12df3ad5, 2019-04-26 (annotated)
- Committer:
- andrewboyson
- Date:
- Fri Apr 26 16:40:19 2019 +0000
- Revision:
- 48:6eac12df3ad5
- Parent:
- 47:229338b3adcb
Moved 1-wire to its own library
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
andrewboyson | 47:229338b3adcb | 1 | #include <stdint.h> |
andrewboyson | 47:229338b3adcb | 2 | #include <stdio.h> |
andrewboyson | 47:229338b3adcb | 3 | |
andrewboyson | 47:229338b3adcb | 4 | #include "http.h" |
andrewboyson | 47:229338b3adcb | 5 | #include "http-server.h" |
andrewboyson | 47:229338b3adcb | 6 | #include "boiler.h" |
andrewboyson | 47:229338b3adcb | 7 | #include "radiator.h" |
andrewboyson | 47:229338b3adcb | 8 | #include "ds18b20.h" |
andrewboyson | 47:229338b3adcb | 9 | #include "program.h" |
andrewboyson | 47:229338b3adcb | 10 | #include "1-wire-device.h" |
andrewboyson | 47:229338b3adcb | 11 | |
andrewboyson | 47:229338b3adcb | 12 | void HttpRadiatorAjax() |
andrewboyson | 47:229338b3adcb | 13 | { |
andrewboyson | 47:229338b3adcb | 14 | HttpOk("text/plain; charset=UTF-8", "no-cache", NULL, NULL); |
andrewboyson | 47:229338b3adcb | 15 | |
andrewboyson | 48:6eac12df3ad5 | 16 | HttpAddInt16AsHex(RadiatorGetHallDS18B20Value()); HttpAddChar('\n'); |
andrewboyson | 47:229338b3adcb | 17 | |
andrewboyson | 47:229338b3adcb | 18 | int nibble = 0; |
andrewboyson | 47:229338b3adcb | 19 | if (ProgramTimerOutput ) nibble |= 0x01; |
andrewboyson | 47:229338b3adcb | 20 | if (RadiatorGetMode() ) nibble |= 0x02; |
andrewboyson | 47:229338b3adcb | 21 | if (RadiatorGetOverride()) nibble |= 0x04; |
andrewboyson | 47:229338b3adcb | 22 | if (RadiatorPump ) nibble |= 0x08; |
andrewboyson | 47:229338b3adcb | 23 | HttpAddNibbleAsHex (nibble); HttpAddChar('\n'); |
andrewboyson | 47:229338b3adcb | 24 | |
andrewboyson | 47:229338b3adcb | 25 | HttpAddInt16AsHex(RadiatorGetNightTemperature()); HttpAddChar('\n'); |
andrewboyson | 47:229338b3adcb | 26 | HttpAddInt16AsHex(RadiatorGetFrostTemperature()); HttpAddChar('\n'); |
andrewboyson | 47:229338b3adcb | 27 | |
andrewboyson | 47:229338b3adcb | 28 | } |
andrewboyson | 47:229338b3adcb | 29 |