Receive data from devices in your space and publish them as part of your SpaceAPI JSON :3
Find a file
Bendodroid 38710484f9
Generate HTTP endpoints for environment sensors
- Move update request sanity checks to new method in handlers/util.go
- Change EnvironmentSensor.Value type because ParseFloat returns float64
2024-01-14 01:10:38 +01:00
config Initialize sensors map with static parts when parsing config 2024-01-14 01:02:30 +01:00
handlers Generate HTTP endpoints for environment sensors 2024-01-14 01:10:38 +01:00
types Generate HTTP endpoints for environment sensors 2024-01-14 01:10:38 +01:00
util First implementation of new config format 2024-01-13 23:27:24 +01:00
.gitignore Small refactoring 2024-01-06 19:43:51 +01:00
config-template.json Rename "static" to "response" for consistency 2024-01-14 00:59:57 +01:00
go.mod Initial commit 2023-11-04 21:07:27 +01:00
LICENSE Add BSD-3-Clause LICENSE 2023-11-04 21:07:40 +01:00
main.go Generate HTTP endpoints for environment sensors 2024-01-14 01:10:38 +01:00
README.md Update README.md with new env var names 2023-11-09 22:30:07 +01:00

SpaceAPI Daemon

spaceapid serves a SpaceAPI-compatible JSON on port 8080:

curl -X GET http://localhost:8080

The state of the boolean state->open property can be modified via /state/open:

curl -X PUT -u user:password -d true http://localhost:8080/state/open

Building

See the go.mod file for minimum required Go version. There are currently no dependencies apart from the Go standard library.

go build .

Running

Substitute the environment variables with appropriate custom values.

env BA_USERNAME=user BA_PASSWORD=password JSON_TEMPLATE_PATH=ccchh-template.json go run .