Skip to content

Commit dbf7b10

Browse files
joba1me-no-dev
authored andcommitted
Update README.md with install instructions for openSUSE (espressif#585)
* Update README.md * Create opensuse.md
1 parent 4c36e03 commit dbf7b10

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Most of the framework is implemented. Most noticable is the missing analogWrite.
2424
+ [Instructions for Mac](docs/arduino-ide/mac.md)
2525
+ [Instructions for Debian/Ubuntu Linux](docs/arduino-ide/debian_ubuntu.md)
2626
+ [Instructions for Fedora](docs/arduino-ide/fedora.md)
27+
+ [Instructions for openSUSE](docs/arduino-ide/opensuse.md)
2728
- [Using PlatformIO](docs/platformio.md)
2829
- [Building with make](docs/make.md)
2930
- [Using as ESP-IDF component](docs/esp-idf_component.md)

Diff for: docs/arduino-ide/opensuse.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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

0 commit comments

Comments
 (0)