Questions tagged [sming]

SMING is an open source framework for high efficiency native ESP8266 development.

18 questions
0
votes
1 answer

Command not parsed properly in ESP8266 SMING example

I have set up the UART to receive and process commands using the CommandProcessing library by using the Telnet_TCPServer_TCPClient example of the SMING framework. Here are the relevant code; void init() { Serial.begin(SERIAL_BAUD_RATE); …
guagay_wk
  • 26,337
  • 54
  • 186
  • 295
0
votes
1 answer

Call ESP8266 SDK API function on SMING framework application

I am using ESP8266 WiFi chip and the SMING framework. I would like to call SDK API function inside an app that uses the SMING framework. Suppose I want to call wifi_station_set_reconnect_policy(true). How can I do this in a SMING application.cpp?
guagay_wk
  • 26,337
  • 54
  • 186
  • 295
-1
votes
1 answer

Convert char* into String

I am using ESP8266 Wifi chip with the SMING framework which uses C++. I have a tcpServer function which receives data from a TCP port. I would like to convert the incoming char *data into String data type. This is what I did. bool…
guagay_wk
  • 26,337
  • 54
  • 186
  • 295
1
2