File tree Expand file tree Collapse file tree 3 files changed +22
-0
lines changed
libraries/ESP32/examples/ESPNow/Basic/Master Expand file tree Collapse file tree 3 files changed +22
-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
+ if [ ` python --version 2>&1 | grep ' 2.7' | wc -l` = " 1" ]; then \
10
+ sudo zypper install git python-pip python-pyserial; \
11
+ else \
12
+ sudo zypper install git python3-pip python3-pyserial; \
13
+ fi && \
14
+ mkdir -p ~ /Arduino/hardware/espressif && \
15
+ cd ~ /Arduino/hardware/espressif && \
16
+ git clone https://github.com/espressif/arduino-esp32.git esp32 && \
17
+ cd esp32/tools/ && \
18
+ python get.py
19
+ ```
20
+ - Restart Arduino IDE
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ void ScanForSlave() {
58
58
// reset on each scan
59
59
bool slaveFound = 0 ;
60
60
memset (&slave, 0 , sizeof (slave));
61
+
61
62
Serial.println (" " );
62
63
if (scanResults == 0 ) {
63
64
Serial.println (" No WiFi devices in AP Mode found" );
You can’t perform that action at this time.
0 commit comments