Update usage section in README

This commit is contained in:
Ivan Kravets
2018-01-10 14:13:33 +02:00
parent eea632192f
commit 082fa6ce1c
+22 -7
View File
@@ -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).