mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-12-27 17:37:45 +01:00
commit
0c1b1fba7e
2
Doxygen
2
Doxygen
@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome"
|
|||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 2022.8.0b2
|
PROJECT_NUMBER = 2022.8.0b3
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
|||||||
ESPHOME_PATH = ../esphome
|
ESPHOME_PATH = ../esphome
|
||||||
ESPHOME_REF = 2022.8.0b2
|
ESPHOME_REF = 2022.8.0b3
|
||||||
|
|
||||||
.PHONY: html html-strict cleanhtml deploy help live-html Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify
|
.PHONY: html html-strict cleanhtml deploy help live-html Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
2022.8.0b2
|
2022.8.0b3
|
@ -44,6 +44,10 @@ Beta Changes
|
|||||||
- Add vector include :esphomepr:`3707` by :ghuser:`jesserockz`
|
- Add vector include :esphomepr:`3707` by :ghuser:`jesserockz`
|
||||||
- Add state_class total :esphomepr:`3608` by :ghuser:`peterg79`
|
- Add state_class total :esphomepr:`3608` by :ghuser:`peterg79`
|
||||||
- add gradient color V2.0 :esphomepr:`3709` by :ghuser:`nielsnl68`
|
- add gradient color V2.0 :esphomepr:`3709` by :ghuser:`nielsnl68`
|
||||||
|
- Webui small fixes :esphomepr:`3713` by :ghuser:`anatoly-savchenkov`
|
||||||
|
- Only trigger ble_client on_connect after discovering services :esphomepr:`3710` by :ghuser:`buxtronix`
|
||||||
|
- Fixes BLE remote address type when connecting :esphomepr:`3702` by :ghuser:`rbaron`
|
||||||
|
- Makes ble_client.ble_write's action value templatable :esphomepr:`3715` by :ghuser:`rbaron`
|
||||||
|
|
||||||
|
|
||||||
All changes
|
All changes
|
||||||
|
@ -118,6 +118,20 @@ Example usage:
|
|||||||
characteristic_uuid: 6490FAFE-0734-732C-8705-91B653A081FC
|
characteristic_uuid: 6490FAFE-0734-732C-8705-91B653A081FC
|
||||||
# List of bytes to write.
|
# List of bytes to write.
|
||||||
value: [0x01, 0xab, 0xff]
|
value: [0x01, 0xab, 0xff]
|
||||||
|
- ble_client.ble_write:
|
||||||
|
id: my_ble_client
|
||||||
|
service_uuid: F61E3BE9-2826-A81B-970A-4D4DECFABBAE
|
||||||
|
characteristic_uuid: 6490FAFE-0734-732C-8705-91B653A081FC
|
||||||
|
# A lambda returning an std::vector<uint8_t>.
|
||||||
|
value: !lambda |-
|
||||||
|
return {0x13, 0x37};
|
||||||
|
|
||||||
|
Configuration variables:
|
||||||
|
|
||||||
|
- **id** (**Required**, :ref:`config-id`): ID of the associated BLE client.
|
||||||
|
- **service_uuid** (**Required**, UUID): UUID of the service to write to.
|
||||||
|
- **characteristic_uuid** (**Required**, UUID): UUID of the service's characteristic to write to.
|
||||||
|
- **value** (**Required**, Array of bytes or :ref:`lambda <config-lambda>`): The value to be written.
|
||||||
|
|
||||||
BLE Overview
|
BLE Overview
|
||||||
------------
|
------------
|
||||||
|
2
conf.py
2
conf.py
@ -68,7 +68,7 @@ author = "ESPHome"
|
|||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = "2022.8"
|
version = "2022.8"
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = "2022.8.0b2"
|
release = "2022.8.0b3"
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
@ -899,4 +899,4 @@ Contributors
|
|||||||
- `Zack Barett (@zsarnett) <https://github.com/zsarnett>`__
|
- `Zack Barett (@zsarnett) <https://github.com/zsarnett>`__
|
||||||
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
|
||||||
|
|
||||||
*This page was last updated August 15, 2022.*
|
*This page was last updated August 16, 2022.*
|
||||||
|
Loading…
Reference in New Issue
Block a user