Advertisement
AmrKhaledNowahy

Untitled

Jun 13th, 2019
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. > Executing task: C:\Users\NTG\.platformio\penv\Scripts\platformio.exe run <
  2.  
  3. Processing esp32dev (platform: espressif32; board: esp32dev; framework: arduino)
  4. ---------------------------------------------------------------------------------------------------------------------------------------------------------------
  5. Verbose mode can be enabled via `-v, --verbose` option
  6. CONFIGURATION: https://docs.platformio.org/page/boards/espressif32/esp32dev.html
  7. PLATFORM: Espressif 32 > Espressif ESP32 Dev Module
  8. HARDWARE: ESP32 240MHz 320KB RAM (4MB Flash)
  9. DEBUG: CURRENT(esp-prog) EXTERNAL(esp-prog, iot-bus-jtag, jlink, minimodule, olimex-arm-usb-ocd, olimex-arm-usb-ocd-h, olimex-arm-usb-tiny-h, olimex-jtag-tiny,
  10. tumpa)
  11. Library Dependency Finder -> http://bit.ly/configure-pio-ldf
  12. LDF MODES: FINDER(chain) COMPATIBILITY(off)
  13. Collected 44 compatible libraries
  14. Scanning dependencies...
  15. Dependency Graph
  16. |-- <ArduinoJson> 5.13.4
  17. |-- <Adafruit GFX Library> 1.5.3
  18. |   |-- <SPI> 1.0
  19. |-- <aREST>
  20. |-- <HttpClient>
  21. |-- <Adafruit SSD1306> 1.2.9
  22. |   |-- <Wire> 1.0.1
  23. |   |-- <SPI> 1.0
  24. |   |-- <Adafruit GFX Library> 1.5.3
  25. |   |   |-- <SPI> 1.0
  26. |-- <ESP8266 QRcode> 2.0.0
  27. |   |-- <ESP8266_SSD1306> 4.0.0
  28. |   |   |-- <Wire> 1.0.1
  29. |   |   |-- <SPI> 1.0
  30. |-- <WiFi> 1.0
  31. |-- <AsyncTCP> 1.0.3
  32. |-- <ESP Async WebServer> 1.2.0
  33. |   |-- <AsyncTCP> 1.0.3
  34. |   |-- <WiFi> 1.0
  35. |   |-- <FS> 1.0
  36. |   |-- <ArduinoJson> 5.13.4
  37. |-- <PubSubClient> 2.7
  38. |-- <SPI> 1.0
  39. Compiling .pioenvs\esp32dev\src\main.cpp.o
  40. Compiling .pioenvs\esp32dev\libaf8\WiFi\WiFiGeneric.cpp.o
  41. Compiling .pioenvs\esp32dev\libaf8\WiFi\WiFiMulti.cpp.o
  42. Compiling .pioenvs\esp32dev\libaf8\WiFi\WiFiSTA.cpp.oIn file included from src\main.cpp:18:0:
  43.  
  44. C:/Users/NTG/.platformio/lib/aREST_ID429/aREST.h:2007:23: warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]
  45. char* mqtt_server = "104.248.48.85";
  46. ^
  47. C:/Users/NTG/.platformio/lib/aREST_ID429/aREST.h: In member function 'void aREST::addToBufferF(const __FlashStringHelper*)':
  48. C:/Users/NTG/.platformio/lib/aREST_ID429/aREST.h:439:11: warning: unused variable 'idx' [-Wunused-variable]
  49. uint8_t idx = 0;
  50. ^
  51. src\main.cpp: In function 'int QR_String_Get()':
  52. src\main.cpp:175:5: error: 'HTTPClient' was not declared in this scope
  53. HTTPClient http2;
  54. ^
  55. src\main.cpp:181:9: error: 'http2' was not declared in this scope
  56. http2.begin(Http_URL); //Specify the URL
  57. ^
  58. src\main.cpp: In function 'void QR_Code_Print()':
  59. src\main.cpp:275:5: error: 'QRCode' was not declared in this scope
  60. QRCode qrcode;
  61. ^
  62. src\main.cpp:276:46: error: 'qrcode_getBufferSize' was not declared in this scope
  63. uint8_t qrcodeData[qrcode_getBufferSize(3)];
  64. ^
  65. src\main.cpp:279:22: error: 'qrcode' was not declared in this scope
  66. qrcode_initText(&qrcode, qrcodeData, 3, 0,QR_Char);
  67. ^
  68. src\main.cpp:279:30: error: 'qrcodeData' was not declared in this scope
  69. qrcode_initText(&qrcode, qrcodeData, 3, 0,QR_Char);
  70. ^
  71. src\main.cpp:279:54: error: 'qrcode_initText' was not declared in this scope
  72. qrcode_initText(&qrcode, qrcodeData, 3, 0,QR_Char);
  73. ^
  74. src\main.cpp:294:56: error: 'qrcode_getModule' was not declared in this scope
  75. Serial.print(qrcode_getModule(&qrcode, x, y) ? "\u2588": " ");
  76. ^
  77. *** [.pioenvs\esp32dev\src\main.cpp.o] Error 1
  78. ================================================================= [ERROR] Took 10.85 seconds =================================================================
  79. The terminal process terminated with exit code: 1
  80.  
  81. Terminal will be reused by tasks, press any key to close it.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement