From c7f204fc8b69ab5d5aa73ad0bd1b81dca399c884 Mon Sep 17 00:00:00 2001 From: Bascht74 <66269310+Bascht74@users.noreply.github.com> Date: Sat, 20 Jan 2024 19:30:17 +0100 Subject: [PATCH] remove serial command text (#3561) ## Description: The serial command text at the end is not needed anymore becaus of: https://github.com/esphome/esphome/pull/2214 Was probably forgotten to remove **Related issue (if applicable):** ./. **Pull request in [esphome]:** ./. ## Checklist: - [ ] I am merging into `next` because this is new documentation that has a matching pull-request in [esphome](https://github.com/esphome/esphome) as linked above. or - [X] I am merging into `current` because this is a fix, change and/or adjustment in the current documentation and is not for a new component or feature. - [ ] Link added in `/index.rst` when creating new documents for new components or cookbook. --- components/sensor/pm1006.rst | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/components/sensor/pm1006.rst b/components/sensor/pm1006.rst index a240e71d3..d207893ee 100644 --- a/components/sensor/pm1006.rst +++ b/components/sensor/pm1006.rst @@ -70,21 +70,6 @@ Example config: update_interval: 20s -If you run the PM1006 (2.5µm) or PM1006K (1, 2.5, 10µm) independent from the original MCU you need to send a serial command in the first 5 seconds after power is applied to the sensor. Otherwise the sensor will switch to PWM mode and does not repond to UART requests. A possibility to do this in ESPhome is to use an automation. `Source `_ - -Example config: - -.. code-block:: yaml - - # Example configuration entry - on_boot: - priority: 240 - then: - - uart.write: - id: ikea #id of the uart bus used for the PM1006 - data: [0x11, 0x02, 0x0B, 0x01, 0xE1] - - See Also --------