File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 42
42
./arduino-cli config add board_manager.additional_urls https://arduino.esp8266.com/stable/package_esp8266com_index.json
43
43
./arduino-cli core update-index
44
44
./arduino-cli core install esp8266:esp8266
45
+ ./arduino-cli config set library.enable_unsafe_install true
45
46
46
47
- name : Install Libraries Required by Unit Tests
47
48
run : ./arduino-cli lib install AUnit Time Timezone
90
91
./arduino-cli core install esp8266:esp8266
91
92
92
93
- name : Install Libraries Required by Sketch
93
- run : ./arduino-cli lib install "hd44780" "NTPClient" "RotaryEncoder" "Time" "Timezone" "DS3231"
94
+ run : |
95
+ ./arduino-cli lib install "hd44780" "NTPClient" "RotaryEncoder" "Time" "Timezone"
96
+ ./arduino-cli lib install --git-url "https://github.com/NorthernWidget/DS3231.git"
94
97
95
98
- name : List top directory
96
99
run : ls -lah
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ We keep [components in src folder](https://forum.arduino.cc/t/how-to-include-fro
50
50
51
51
```
52
52
arduino-cli config add board_manager.additional_urls https://arduino.esp8266.com/stable/package_esp8266com_index.json
53
+ arduino-cli config set library.enable_unsafe_install true
53
54
```
54
55
55
56
4 . Configure the [ autocompletion for command-line] ( https://arduino.github.io/arduino-cli/0.22/command-line-completion/#generate-the-completion-file ) (optional step)
@@ -79,7 +80,8 @@ In root directory:
79
80
1 . Install required libraries (i.e. [ hd44780] ( https://github.com/duinoWitchery/hd44780 ) ):
80
81
81
82
``` bash
82
- arduino-cli lib install " hd44780" " NTPClient" " RotaryEncoder" " Time" " Timezone" " DS3231"
83
+ arduino-cli lib install " hd44780" " NTPClient" " RotaryEncoder" " Time" " Timezone"
84
+ arduino-cli lib install --git-url " https://github.com/NorthernWidget/DS3231.git"
83
85
```
84
86
85
87
2 . Compile: ` arduino-cli --verbose compile --fqbn esp8266:esp8266:d1 `
You can’t perform that action at this time.
0 commit comments