Manages the 1-wire bus
Dependents: oldheating heating
http/http-1wire-query.c
- Committer:
- andrewboyson
- Date:
- 2019-04-26
- Revision:
- 1:c272b1fcc834
File content as of revision 1:c272b1fcc834:
#include <string.h> #include <stdlib.h> #include "http.h" #include "1-wire-device.h" #include "settings.h" #include "ds18b20.h" void HttpOneWireQuery(char* pQuery) { while (pQuery) { char* pName; char* pValue; pQuery = HttpQuerySplit(pQuery, &pName, &pValue); HttpQueryUnencode(pValue); int value = HttpQueryValueAsInt(pValue); if (HttpSameStr(pName, "rom0")) { char rom[8]; DeviceParseAddress(pValue, rom); DS18B20RomSetters[0](rom); } if (HttpSameStr(pName, "rom1")) { char rom[8]; DeviceParseAddress(pValue, rom); DS18B20RomSetters[1](rom); } if (HttpSameStr(pName, "rom2")) { char rom[8]; DeviceParseAddress(pValue, rom); DS18B20RomSetters[2](rom); } if (HttpSameStr(pName, "rom3")) { char rom[8]; DeviceParseAddress(pValue, rom); DS18B20RomSetters[3](rom); } if (HttpSameStr(pName, "onewiretrace" )) ChgTraceOneWire(); } }