LIRC Web API

LIRC client implemented by golang.
Install
curl https://raw.githubusercontent.com/ww24/lirc-web-api/master/install.sh | sh
Usage
Health check
curl http://localhost:3000/status
List
curl http://localhost:3000/api/v1/signals
{
"status":"ok",
"signals":[
{
"remote":"aircon",
"name":"on"
},
{
"remote":"aircon",
"name":"off"
}
]
}
Send
curl -XPOST http://localhost:3000/status/aircon/on
remote --> aircon
name --> on
Web Frontend
Open http://localhost:3000/ in Google Chrome or Android Chrome.