Skip to content

Commit fec1a64

Browse files
committed
Merge pull request #1573 from esp8266/travis-hourly-arduino
Use hourly Arduino builds on Travis
2 parents 30b2a99 + 88a20ae commit fec1a64

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ os:
44
- linux
55

66
script:
7-
- wget http://downloads.arduino.cc/arduino-1.6.5-linux64.tar.xz
8-
- tar xf arduino-1.6.5-linux64.tar.xz
9-
- mv arduino-1.6.5 $HOME/arduino_ide
7+
- wget -O arduino.tar.xz https://www.arduino.cc/download.php?f=/arduino-nightly-linux64.tar.xz
8+
- tar xf arduino.tar.xz
9+
- mv arduino-nightly $HOME/arduino_ide
1010
- cd $HOME/arduino_ide/hardware
1111
- mkdir esp8266com
1212
- cd esp8266com

libraries/ESP8266WiFiMesh/examples/HelloMesh/HelloMesh.ino

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
unsigned int request_i = 0;
55
unsigned int response_i = 0;
66

7+
String manageRequest(String request);
8+
79
/* Create the mesh node object */
810
ESP8266WiFiMesh mesh_node = ESP8266WiFiMesh(ESP.getChipId(), manageRequest);
911

0 commit comments

Comments
 (0)