ESP8266 IoT APK

ESP8266 IoT  Icon
0/5
0 Ratings
Developer
DanySoftware
Current Version
1.0.5
Date Published
File Size
2.1 MB
Package ID
it.danysoftware.esp8266controller
Price
$ 0.00
Downloads
70+
Category
Android Apps
Genre
Tools

APK Version History

Version
1.0.5 (5)
Architecture
universal
Release Date
May 27, 2019
Requirement
Android 4.0+
Version
1.0.4 (4)
Architecture
universal
Release Date
May 15, 2019
Requirement
Android 2.3.2+
  • ESP8266 IoT Screenshot
  • ESP8266 IoT Screenshot
  • ESP8266 IoT Screenshot
  • ESP8266 IoT Screenshot
  • ESP8266 IoT Screenshot
  • ESP8266 IoT Screenshot

About Radio FM 90s

Application for Remote Arduino Management via ESP8266 Module.

From this App you can download the Esp8266.bin file and to program the module.

We add a sample of Arduino code that communicates with the Esp8266. Obviously this is a base from which to start new experiments

**************************************************************************************
String Msg = "";

void setup()
{
Serial.begin(115200);
}

void loop()
{
int c;

while ((c = Serial.read()) > '\n') Msg += (char) c;
if (c == '\n')
{
if (Msg.substring(0, 1).equals("$"))
{
Msg.remove(0, 1);

Serial.print("#");
Serial.println(Msg);

}

Msg = "";
}
}
************************************************************************

What's New in this version

Add Banner