Skip to content

Instantly share code, notes, and snippets.

@DarkLotus
Created February 13, 2016 01:12
Show Gist options
  • Select an option

  • Save DarkLotus/aa76bf13b478df95990b to your computer and use it in GitHub Desktop.

Select an option

Save DarkLotus/aa76bf13b478df95990b to your computer and use it in GitHub Desktop.
WARNING: library ESP8266WiFi claims to run on [esp8266] architecture(s) and may be incompatible with your current board which runs on [oak] architecture(s).
WARNING: library ESP8266WebServer claims to run on [esp8266] architecture(s) and may be incompatible with your current board which runs on [oak] architecture(s).
WARNING: library Ticker claims to run on [esp8266] architecture(s) and may be incompatible with your current board which runs on [oak] architecture(s).
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void setup()':
oaksystem:70: error: 'scanNetworks' was not declared in this scope
scanNetworks();
^
oaksystem:80: error: 'setupAccessPoint' was not declared in this scope
setupAccessPoint(false);
^
oaksystem:95: error: 'setupAccessPoint' was not declared in this scope
setupAccessPoint(false);
^
oaksystem:101: error: 'setupAccessPoint' was not declared in this scope
setupAccessPoint(true);
^
oaksystem:106: error: 'pumpEvents' was not declared in this scope
pumpEvents();
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void loop()':
oaksystem:183: error: 'displayVersion' was not declared in this scope
displayVersion(false);
^
oaksystem:185: error: 'displayDeviceId' was not declared in this scope
displayDeviceId(false);
^
oaksystem:187: error: 'displayScan' was not declared in this scope
displayScan(false);
^
oaksystem:189: error: 'displayConfigureAp' was not declared in this scope
displayConfigureAp(true,String(request));
^
oaksystem:191: error: 'displayConnectAp' was not declared in this scope
displayConnectAp(false);
^
oaksystem:193: error: 'displayPublicKey' was not declared in this scope
displayPublicKey(false);
^
oaksystem:195: error: 'displaySet' was not declared in this scope
displaySet(false,String(request));
^
oaksystem:197: error: 'displayHello' was not declared in this scope
displayHello(false);
^
oaksystem:199: error: 'displayInfo' was not declared in this scope
displayInfo(false);
^
oaksystem:201: error: 'displayParticle' was not declared in this scope
displayParticle(false);
^
oaksystem:203: error: 'displaySystemVersion' was not declared in this scope
displaySystemVersion(false);
^
oaksystem:205: error: 'displaySystemUpdate' was not declared in this scope
displaySystemUpdate(false);
^
oaksystem:255: error: 'displayVersion' was not declared in this scope
displayVersion(2);
^
oaksystem:257: error: 'displayDeviceId' was not declared in this scope
displayDeviceId(2);
^
oaksystem:259: error: 'displayScan' was not declared in this scope
displayScan(2);
^
oaksystem:261: error: 'displayConfigureAp' was not declared in this scope
displayConfigureAp(2,String(request));
^
oaksystem:263: error: 'displayConnectAp' was not declared in this scope
displayConnectAp(2);
^
oaksystem:265: error: 'displayPublicKey' was not declared in this scope
displayPublicKey(2);
^
oaksystem:267: error: 'displaySet' was not declared in this scope
displaySet(2,String(request));
^
oaksystem:269: error: 'displayHello' was not declared in this scope
displayHello(2);
^
oaksystem:271: error: 'displayTest' was not declared in this scope
displayTest();
^
oaksystem:273: error: 'displayInfo' was not declared in this scope
displayInfo(2);
^
oaksystem:275: error: 'displayParticle' was not declared in this scope
displayParticle(2);
^
oaksystem:277: error: 'displaySystemVersion' was not declared in this scope
displaySystemVersion(2);
^
oaksystem:279: error: 'displaySystemUpdate' was not declared in this scope
displaySystemUpdate(2);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void setupAccessPoint(bool)':
oaksystem:380: error: 'displayHelloPage' was not declared in this scope
server.on("/", displayHelloPage);
^
oaksystem:382: error: 'displayVersionPage' was not declared in this scope
server.on("/version", displayVersionPage);
^
oaksystem:383: error: 'displayDeviceIdPage' was not declared in this scope
server.on("/device-id", displayDeviceIdPage);
^
oaksystem:384: error: 'displayScanPage' was not declared in this scope
server.on("/scan-ap", displayScanPage);
^
oaksystem:385: error: 'displayConfigureApPage' was not declared in this scope
server.on("/configure-ap", displayConfigureApPage);
^
oaksystem:386: error: 'displayConnectApPage' was not declared in this scope
server.on("/connect-ap", displayConnectApPage);
^
oaksystem:387: error: 'displayPublicKeyPage' was not declared in this scope
server.on("/public-key", displayPublicKeyPage);
^
oaksystem:388: error: 'displaySetPage' was not declared in this scope
server.on("/set", displaySetPage);
^
oaksystem:389: error: 'displayInfoPage' was not declared in this scope
server.on("/info", displayInfoPage);
^
oaksystem:390: error: 'displaySystemVersionPage' was not declared in this scope
server.on("/system-version", displaySystemVersionPage);
^
oaksystem:391: error: 'displayParticlePage' was not declared in this scope
server.on("/particle", displayParticlePage);
^
oaksystem:392: error: 'displaySystemUpdatePage' was not declared in this scope
server.on("/system-update", displaySystemUpdatePage);
^
oaksystem:394: error: 'handleNotFound' was not declared in this scope
server.onNotFound(handleNotFound);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayConfigureApPage()':
oaksystem:406: error: 'displayConfigureAp' was not declared in this scope
displayConfigureAp(true,input);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayConfigureAp(uint8_t, String)':
oaksystem:411: error: 'sendHTML' was not declared in this scope
sendHTML(Oak.configureApFromJSON(input));
^
oaksystem:414: error: 'sendSerial' was not declared in this scope
sendSerial(Oak.configureApFromJSON(input));
^
oaksystem:417: error: 'sendTelnet' was not declared in this scope
sendTelnet(Oak.configureApFromJSON(input));
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayParticlePage()':
oaksystem:422: error: 'displayParticle' was not declared in this scope
displayParticle(true);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displaySystemUpdatePage()':
oaksystem:425: error: 'displaySystemUpdate' was not declared in this scope
displaySystemUpdate(true);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displaySystemVersionPage()':
oaksystem:428: error: 'displaySystemVersion' was not declared in this scope
displaySystemVersion(true);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayHelloPage()':
oaksystem:431: error: 'displayHello' was not declared in this scope
displayHello(true);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displaySetPage()':
oaksystem:443: error: 'displaySet' was not declared in this scope
displaySet(true,input);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displaySet(uint8_t, String)':
oaksystem:450: error: 'sendHTML' was not declared in this scope
sendHTML(Oak.setConfigFromJSON(input));
^
oaksystem:453: error: 'sendSerial' was not declared in this scope
sendSerial(Oak.setConfigFromJSON(input));
^
oaksystem:456: error: 'sendTelnet' was not declared in this scope
sendTelnet(Oak.setConfigFromJSON(input));
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displaySystemVersion(uint8_t)':
oaksystem:468: error: 'sendHTML' was not declared in this scope
sendHTML(String(OAK_SYSTEM_VERSION_INTEGER));
^
oaksystem:471: error: 'sendSerial' was not declared in this scope
sendSerial(String(OAK_SYSTEM_VERSION_INTEGER));
^
oaksystem:474: error: 'sendTelnet' was not declared in this scope
sendTelnet(String(OAK_SYSTEM_VERSION_INTEGER));
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayParticle(uint8_t)':
oaksystem:487: error: 'sendHTML' was not declared in this scope
sendHTML(particle);
^
oaksystem:490: error: 'sendSerial' was not declared in this scope
sendSerial(particle);
^
oaksystem:493: error: 'sendTelnet' was not declared in this scope
sendTelnet(particle);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displaySystemUpdate(uint8_t)':
oaksystem:500: error: 'sendHTML' was not declared in this scope
sendHTML(update_string);
^
oaksystem:503: error: 'sendSerial' was not declared in this scope
sendSerial(update_string);
^
oaksystem:506: error: 'sendTelnet' was not declared in this scope
sendTelnet(update_string);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayHello(uint8_t)':
oaksystem:514: error: 'sendHTML' was not declared in this scope
sendHTML(hello);
^
oaksystem:517: error: 'sendSerial' was not declared in this scope
sendSerial(hello);
^
oaksystem:520: error: 'sendTelnet' was not declared in this scope
sendTelnet(hello);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayInfoPage()':
oaksystem:527: error: 'displayInfo' was not declared in this scope
displayInfo(true);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayPublicKeyPage()':
oaksystem:532: error: 'displayPublicKey' was not declared in this scope
displayPublicKey(true);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayPublicKey(uint8_t)':
oaksystem:549: error: 'sendHTML' was not declared in this scope
sendHTML(pubKey);
^
oaksystem:552: error: 'sendSerial' was not declared in this scope
sendSerial(pubKey);
^
oaksystem:555: error: 'sendTelnet' was not declared in this scope
sendTelnet(pubKey);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayConnectApPage()':
oaksystem:561: error: 'displayConnectAp' was not declared in this scope
displayConnectAp(true);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayConnectAp(uint8_t)':
oaksystem:571: error: 'sendHTML' was not declared in this scope
sendHTML(connectAp);
^
oaksystem:574: error: 'sendSerial' was not declared in this scope
sendSerial(connectAp);
^
oaksystem:577: error: 'sendTelnet' was not declared in this scope
sendTelnet(connectAp);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayVersionPage()':
oaksystem:585: error: 'displayVersion' was not declared in this scope
displayVersion(true);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayVersion(uint8_t)':
oaksystem:595: error: 'sendHTML' was not declared in this scope
sendHTML(version);
^
oaksystem:598: error: 'sendSerial' was not declared in this scope
sendSerial(version);
^
oaksystem:601: error: 'sendTelnet' was not declared in this scope
sendTelnet(version);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayDeviceIdPage()':
oaksystem:607: error: 'displayDeviceId' was not declared in this scope
displayDeviceId(true);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayDeviceId(uint8_t)':
oaksystem:625: error: 'sendHTML' was not declared in this scope
sendHTML(deviceId);
^
oaksystem:628: error: 'sendSerial' was not declared in this scope
sendSerial(deviceId);
^
oaksystem:631: error: 'sendTelnet' was not declared in this scope
sendTelnet(deviceId);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayInfo(uint8_t)':
oaksystem:643: error: 'sendHTML' was not declared in this scope
sendHTML(infoResponse());
^
oaksystem:646: error: 'sendSerial' was not declared in this scope
sendSerial(infoResponse());
^
oaksystem:649: error: 'sendTelnet' was not declared in this scope
sendTelnet(infoResponse());
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayScanPage()':
oaksystem:655: error: 'displayScan' was not declared in this scope
displayScan(true);
^
C:\Users\James\Documents\Arduino\oaksystem\oaksystem.ino: In function 'void displayScan(uint8_t)':
oaksystem:660: error: 'sendHTML' was not declared in this scope
sendHTML(JSONScan);
^
oaksystem:663: error: 'sendSerial' was not declared in this scope
sendSerial(JSONScan);
^
oaksystem:666: error: 'sendTelnet' was not declared in this scope
sendTelnet(JSONScan);
^
exit status 1
'scanNetworks' was not declared in this scope
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment