Receive data from devices in your space and publish them as part of your SpaceAPI JSON :3
Find a file
2024-01-14 02:02:55 +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 Save sensor values to persistent-state.json 2024-01-14 02:02:55 +01:00
util Save sensor values to persistent-state.json 2024-01-14 02:02:55 +01:00
.gitignore Small refactoring 2024-01-06 19:43:51 +01:00
config-template.json Update config-template.json with placeholders for environment sensors 2024-01-14 01:10:39 +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 .