File tree 2 files changed +17
-0
lines changed
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ Most of the framework is implemented. Most noticable is the missing analogWrite.
24
24
+ [ Instructions for Mac] ( docs/arduino-ide/mac.md )
25
25
+ [ Instructions for Debian/Ubuntu Linux] ( docs/arduino-ide/debian_ubuntu.md )
26
26
+ [ Instructions for Fedora] ( docs/arduino-ide/fedora.md )
27
+ + [ Instructions for openSUSE] ( docs/arduino-ide/opensuse.md )
27
28
- [ Using PlatformIO] ( docs/platformio.md )
28
29
- [ Building with make] ( docs/make.md )
29
30
- [ Using as ESP-IDF component] ( docs/esp-idf_component.md )
Original file line number Diff line number Diff line change
1
+ Installation instructions for openSUSE
2
+ ======================================
3
+
4
+ - Install the latest Arduino IDE from [ arduino.cc] ( https://www.arduino.cc/en/Main/Software ) .
5
+ - Open Terminal and execute the following command (copy->paste and hit enter):
6
+
7
+ ``` bash
8
+ sudo usermod -a -G dialout $USER && \
9
+ sudo zypper install git python3-pip python3-pyserial && \
10
+ mkdir -p ~ /Arduino/hardware/espressif && \
11
+ cd ~ /Arduino/hardware/espressif && \
12
+ git clone https://github.com/espressif/arduino-esp32.git esp32 && \
13
+ cd esp32/tools/ && \
14
+ python get.py
15
+ ```
16
+ - Restart Arduino IDE
You can’t perform that action at this time.
0 commit comments