feucht

Sensor application for transmitting humidity values

git clone https://git.8pit.net/feucht.git

 1Feucht
 2======
 3
 4[RIOT][1] application utilising an [HDC1000][2] sensor.
 5
 6Backends
 7--------
 8
 9The humidity value read from the [HDC1000][2] is transmitted to a
10central server. The protocol used for this transmission can be
11configured using the `FEUCHT_PROTO` environment variable. Currently
12valid values are:
13
141. `9P` for using the [9P][5] protocol with [ninenano][3]
152. `COAP` for using the [CoAP][6] protocol with [gcoap][4]
16
17Besides the address and port of the protocol server need to be
18configured using the `FEUCHT_HOST` and `FEUCHT_PORT` environment
19variable. The latter is optional.
20
21Known Bugs
22----------
23
24The `ninenano` package is currently not included in the upstream RIOT
25repeository, please make `RIOTBASE` point to a checkout of my [RIOT
26fork][7] instead for now.
27
28License
29-------
30
31This program is free software: you can redistribute it and/or modify it
32under the terms of the GNU General Public License as published by the
33Free Software Foundation, either version 3 of the License, or (at your
34option) any later version.
35
36This program is distributed in the hope that it will be useful, but
37WITHOUT ANY WARRANTY; without even the implied warranty of
38MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
39Public License for more details.
40
41You should have received a copy of the GNU General Public License along
42with this program. If not, see <http://www.gnu.org/licenses/>.
43
44[1]: http://riot-os.org/
45[2]: http://www.ti.com/lit/ds/symlink/hdc1000.pdf
46[3]: https://github.com/nmeum/ninenano
47[4]: http://riot-os.org/api/group__net__gcoap.html
48[5]: http://9p.cat-v.org/
49[6]: https://tools.ietf.org/html/rfc7228
50[7]: https://github.com/nmeum/RIOT