mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-05 09:20:08 +01:00
764155d5e5
Raspberry pico W is supported, but the vanilla raspberry pico clearly is not. After trying "rpipico" as a board this error shows up "Error: Unknown board ID 'rpipico'". It is bit misleading, because from what I know about esphome you cannot just have a device that communicates through USB and doesn't connect to WiFi. I think it is important to understand that RP2040 isn't like ESP. Every RP2040 board doesn't support esphome, but basically any ESP device can support esphome.
44 lines
1.0 KiB
ReStructuredText
44 lines
1.0 KiB
ReStructuredText
RP2040 Platform
|
|
===============
|
|
|
|
.. seo::
|
|
:description: Configuration for the RP2040 platform for ESPHome.
|
|
:image: rp2040.svg
|
|
|
|
This component contains platform-specific options for the RP2040 platform.
|
|
|
|
.. note::
|
|
|
|
Support for all aspects of ESPHome on the RP2040 is still in development.
|
|
Please search for or create an `issue <https://github.com/esphome/issues/issues/new?assignees=&labels=&template=bug_report.yml>`__ if you encounter an unknown problem.
|
|
|
|
.. code-block:: yaml
|
|
|
|
# Example configuration entry
|
|
rp2040:
|
|
board: rpipicow
|
|
|
|
.. note::
|
|
|
|
For now, you need the following added to the config or you will get compile errors and board not found:
|
|
|
|
.. code-block:: yaml
|
|
|
|
# Example configuration entry
|
|
rp2040:
|
|
board: rpipicow
|
|
framework:
|
|
platform_version: https://github.com/maxgerhardt/platform-raspberrypi.git
|
|
|
|
|
|
Configuration variables:
|
|
------------------------
|
|
|
|
- **board** (*Optional*, string): The board type. Valid option is ``rpipicow``.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :doc:`esphome`
|
|
- :ghedit:`Edit`
|