diff --git a/README.md b/README.md index 559488f..26d28d9 100644 --- a/README.md +++ b/README.md @@ -9,12 +9,27 @@ Espressif Systems is a privately held fabless semiconductor company. They provid # Usage -1. [Install PlatformIO Core](http://docs.platformio.org/page/core.html) -2. Install Espressif 32 development platform: -```bash -# install the latest stable version -> platformio platform install espressif32 +1. [Install PlatformIO](http://platformio.org) +2. Create PlatformIO project and configure a platform option in [platformio.ini](http://docs.platformio.org/page/projectconf.html) file: -# install development version -> platformio platform install https://github.com/platformio/platform-espressif32.git +## Stable version + +```ini +[env:stable] +platform = espressif32 +board = ... +... ``` + +## Development version + +```ini +[env:development] +platform = https://github.com/platformio/platform-espressif32.git +board = ... +... +``` + +# Configuration + +Please navigate to [documentation](http://docs.platformio.org/page/platforms/espressif32.html).