From 030faff7486eb578c9475d2cc986ae36fbf1384a Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Thu, 4 Feb 2016 18:13:25 +0300 Subject: [PATCH 1/2] Use hourly Arduino builds on Travis --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 073d297abe..5a510a1125 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,9 +4,9 @@ os: - linux script: - - wget http://downloads.arduino.cc/arduino-1.6.5-linux64.tar.xz - - tar xf arduino-1.6.5-linux64.tar.xz - - mv arduino-1.6.5 $HOME/arduino_ide + - wget -O arduino.tar.xz https://www.arduino.cc/download.php?f=/arduino-nightly-linux64.tar.xz + - tar xf arduino.tar.xz + - mv arduino-nightly $HOME/arduino_ide - cd $HOME/arduino_ide/hardware - mkdir esp8266com - cd esp8266com From 88a20ae41a332d58f40e19202b6d9cf00c973a1e Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Mon, 15 Feb 2016 13:56:03 +0300 Subject: [PATCH 2/2] Make compatible with arduino-builder --- libraries/ESP8266WiFiMesh/examples/HelloMesh/HelloMesh.ino | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/ESP8266WiFiMesh/examples/HelloMesh/HelloMesh.ino b/libraries/ESP8266WiFiMesh/examples/HelloMesh/HelloMesh.ino index 492605bd03..6a0624f418 100644 --- a/libraries/ESP8266WiFiMesh/examples/HelloMesh/HelloMesh.ino +++ b/libraries/ESP8266WiFiMesh/examples/HelloMesh/HelloMesh.ino @@ -4,6 +4,8 @@ unsigned int request_i = 0; unsigned int response_i = 0; +String manageRequest(String request); + /* Create the mesh node object */ ESP8266WiFiMesh mesh_node = ESP8266WiFiMesh(ESP.getChipId(), manageRequest);