Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.32 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.32 KB

godfrey4home

GodFrey4Home will help you to manage hardware devices for a HomeKit client ( Iphone,Ipad) , based on a GO stack software.

GodFrey4Home is provide under MIT License.

GodFrey4Home is currently a set of independent programm.

homekit-tasmota-switch.go

to compile

for your local architecture

cd src
go build -ldflags "-s -w" -v power-switch-cgi.go

for a different architecture

For example , you want deploy the binary on a raspberry PI or or some openwrt router .

for a raspberry PI

env GOOS=linux GOARCH=arm GOARM=5 go build   -ldflags "-s -w" -v homekit-power-switch.go

for a cubietruck see debian on cubie truck (https://www.armbian.com/cubietruck/)

env GOOS=linux GOARCH=arm GOARM=7 go build   -ldflags "-s -w" -v homekit-power-switch.go