diff --git a/src/config/sidebar.yml b/src/config/sidebar.yml index 661d9eaac..51aacc618 100644 --- a/src/config/sidebar.yml +++ b/src/config/sidebar.yml @@ -31,7 +31,9 @@ - label: 'US Devices' link: '/standards/us' - label: Boards - items: + items: + - label: 'BK72xx' + link: '/board/bk72xx' - label: 'ESP32' link: '/board/esp32' - label: 'ESP8266' diff --git a/src/docs/adding-devices.md b/src/docs/adding-devices.md index b67d950ad..40603c46e 100644 --- a/src/docs/adding-devices.md +++ b/src/docs/adding-devices.md @@ -33,7 +33,7 @@ standard: uk, us | `date-published` | Date Published | Formatting: `YYYY-MM-DD HH:MM:SS +/-TTTT` (Time and Timezone offset are optional) | Yes | | `type` | Type of Device | `plug`, `light`, `switch`, `dimmer` , `relay`, `sensor`, `misc` | Yes | | `standard` | Electrical standard country | `uk`, `us`, `eu`, `au`, `in`, `global` | Yes | -| `board` | Type of board used in product | `esp8266`, `esp32`, `rp2040` | No (but required to show on Boards page) | +| `board` | Type of board used in product | `esp8266`, `esp32`, `rp2040`, `bk72xx` | No (but required to show on Boards page) | | `project-url` | URL for product or GitHub. This should point directly to a working Yaml file or page where the yaml file is easily accessible (ie. a Github Repo) Repo | | No | | `made-for-esphome` | Has the manufacturer certified the device for ESPHome | `True`, `False` | No | | `difficulty` | Difficulty rating | `1`: Comes with ESPhome, `2`: Plug-n-flash, `3`: Disassembly required, `4`: Soldering required, `5`: Chip needs replacement | No | diff --git a/src/docs/board/bk72xx.mdx b/src/docs/board/bk72xx.mdx new file mode 100644 index 000000000..588dabcc0 --- /dev/null +++ b/src/docs/board/bk72xx.mdx @@ -0,0 +1,8 @@ +--- +slug: bk72xx +title: "Boards: bk72xx" +--- + +import FilterDevices from "../../components/FilterDevices/filterdevices"; + + \ No newline at end of file diff --git a/src/docs/devices/Woox-R6087/index.md b/src/docs/devices/Woox-R6087/index.md new file mode 100644 index 000000000..b2110c155 --- /dev/null +++ b/src/docs/devices/Woox-R6087/index.md @@ -0,0 +1,34 @@ +--- +title: Woox R6087 Plug 16/20A +date-published: 2023-09-27 +type: plug +standard: eu +board: bk72xx +difficulty: 4 +--- + +## Notes + +![Woox R6087](woox-r6087-large.jpg "Woox R6087") + +## GPIO Pinout + +| Pin | Function | +| ---- | ----------------- | +| P6 | Button | +| P24 | Relay | +| P8 | LED, inverted | +| P7 | Status LED | + +## Board Configuration + +```yaml + +bk72xx: + board: wb2s + framework: + version: latest + options: + LT_UART_DEFAULT_PORT: 1 + +``` diff --git a/src/docs/devices/Woox-R6087/woox-r6087-large.jpg b/src/docs/devices/Woox-R6087/woox-r6087-large.jpg new file mode 100644 index 000000000..6c252baea Binary files /dev/null and b/src/docs/devices/Woox-R6087/woox-r6087-large.jpg differ