8000 Merge branch 'master' into master · espressif/arduino-esp32@05dac71 · GitHub
[go: up one dir, main page]

Skip to content

Commit 05dac71

Browse files
authored
Merge branch 'master' into master
2 parents 4b457a2 + cc00af3 commit 05dac71

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
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)

docs/arduino-ide/opensuse.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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

libraries/ESP32/examples/ESPNow/Basic/Master/Master.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ void ScanForSlave() {
5858
// reset on each scan
5959
bool slaveFound = 0;
6060
memset(&slave, 0, sizeof(slave));
61+
6162
Serial.println("");
6263
if (scanResults == 0) {
6364
Serial.println("No WiFi devices in AP Mode found");

0 commit comments

Comments
 (0)
0