Skip to content

Node v0.1.0

Compare
Choose a tag to compare
@MikMuellerDev MikMuellerDev released this 31 Jul 19:36
· 11 commits to main since this release

Changelog for v0.1.0

Generic GPIO devices

  • Added support for generic GPIO devices
  • Alongside the preexisting 433mhz hardware, you can now leverage the power of any GPIO pin to be controllable via Smarthome

The new configuration file looks like this:

{
	"port": 8081,
	"nodeName": "localhost",
	"tokenHash": "$2a$05$T9NsGTrr847RI3yianF90Oi7PxUxANUybxGjSDgtlw3g6HI44xRbO",
	"hardware": {
		"hardwareEnabled": false,
		"pin": 0,
		"protocol": 1,
		"repeat": 10,
		"pulseLength": 180,
		"contentLength": 24
	},
	"switchesRF": [
		{
			"id": "s1",
			"on": 0,
			"off": 0
		}
	],
	"switchesGPIO": [
		{
			"id": "s2",
			"pin": 1
		}
	]
}