Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/muzea/homebridge-state-switch


https://github.com/muzea/homebridge-state-switch

homebridge programable-switch

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

        

# Homebridge State Switch Plugin

一个配合可编程开关的插件

[一个可以配合使用的 ESP8266 固件](https://github.com/muzea/homebridge-state-switch-esp8266)

# 配置项

## name

开关的名字,获取/设置开关的状态会用到

## api

提供开关状态查询/设置的 HTTP 服务

该服务需要实现两个操作

### 查询状态

```
GET /
```

返回值为

状态为 开
```
{"":"on"}
```

状态为 关
```
{"":"off"}
```

### 设置状态

设置为 开
```
PUT /

{"":"on"}
```

设置为 关
```
PUT /

{"":"off"}
```