Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e10e554

Browse files
committedMar 21, 2020
Install libraries
1 parent e1dcae7 commit e10e554

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed
 

‎README.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Global variables use 9 bytes (0%) of dynamic memory, leaving 2039 bytes for loca
115115

116116
`arduino-cli upload -p COM3 --fqbn arduino:avr:nano cli-blink`
117117

118-
## Install 3rd party cores.
118+
## Install 3rd party cores
119119

120120
- You can use `arduino-cli` to compile and upload code to non AVR boards as well such as `ESP8266` and `ESP32`.
121121

@@ -159,3 +159,35 @@ Updating index: package_esp8266com_index.json downloaded
159159
- Upload to nodeMCU connected on `COM4`:
160160

161161
`arduino-cli upload -p COM4 --fqbn esp8266:esp8266:nodemcuv2 cli-blink`
162+
163+
## Install libraries
164+
165+
- You can search for additional libraries by:
166+
`arduino-cli lib search LibraryName`
167+
168+
```bash
169+
$ arduino-cli lib search wifimanager
170+
Name: "WiFiManager"
171+
Author: tzapu
172+
Maintainer: tzapu
173+
Sentence: ESP8266 WiFi Connection manager with fallback web configuration portal
174+
Paragraph: Library for configuring ESP8266 modules WiFi credentials at runtime.
175+
Website: https://github.com/tzapu/WiFiManager.git
176+
Category: Communication
177+
Architecture: esp8266
178+
Types: Contributed
179+
Versions: [0.5.0, 0.6.0, 0.7.0, 0.8.0, 0.9.0, 0.10.0, 0.11.0, 0.12.0, 0.13.0, 0.14.0, 0.15.0-beta, 0.15.0]
180+
```
181+
182+
- Install the library by:
183+
184+
`arduino-cli lib install WiFiManager`
185+
186+
```bash
187+
$ arduino-cli lib install WiFiManager
188+
WiFiManager depends on WiFiManager@0.15.0
189+
Downloading WiFiManager@0.15.0...
190+
WiFiManager@0.15.0 downloaded
191+
Installing WiFiManager@0.15.0...
192+
Installed WiFiManager@0.15.0
193+
```

0 commit comments

Comments
 (0)
Please sign in to comment.