GUI Maker for ESP8266 & ESP32 - Python Inst. Panel Application icon

GUI Maker for ESP8266 & ESP32 - Python Inst. Panel 1.2.5

34.1 MB / 10+ Downloads / Rating 2.8 - 4 reviews


See previous versions

GUI Maker for ESP8266 & ESP32 - Python Inst. Panel, developed and published by RapidNack.com, has released its latest version, 1.2.5, on 2018-06-10. This app falls under the Tools category on the Google Play Store and has achieved over 1000 installs. It currently holds an overall rating of 2.8, based on 4 reviews.

GUI Maker for ESP8266 & ESP32 - Python Inst. Panel APK available on this page is compatible with all Android devices that meet the required specifications (Android 4.1+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: com.rapidnack.PythonInstrumentPanel

Updated: 7 years ago

Developer Name: RapidNack.com

Category: Tools

New features: Show more

App Permissions: Show more

Installation Instructions

This article outlines two straightforward methods for installing GUI Maker for ESP8266 & ESP32 - Python Inst. Panel on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

App Rating

2.8
Total 4 reviews

Previous Versions

GUI Maker for ESP8266 & ESP32 - Python Inst. Panel 1.2.5
2018-06-10 / 34.1 MB / Android 4.1+

About this app

What is the purpose of this application?

By arranging buttons, timers, graphs etc. and describing the processing in Iron Python, it is possible to create the operation panel for ESP 8266 and ESP 32 in a short time.

What program should be written to ESP8266 / ESP32?

Arduino sketch http://rapidnack.com/?p=835
Operation explanation - Display http://rapidnack.com/?p=918
Operation explanation - Graph http://rapidnack.com/?p=945
Sample - Color LED http://rapidnack.com/?p=967
Sample - Temp & Humidity http://rapidnack.com/?p=987
Sample - Push Switch http://rapidnack.com/?p=1017
AD9851 DDS module http://rapidnack.com/?p=1164

Please write the above Arduino sketch to ESP. If you connect ESP to Android and operate buttons, sliders, etc., the same content displayed in the log on the application screen is displayed on the Arduino IDE serial monitor.
By adding timers and graphs to the application screen and changing the Arduino sketch to send measured data, you can display the measured data graphically in real time. When actually using it, add your own processing to mySetup(), myLoop(), process() at the end of the Arduino sketch.

void mySetup() {

}

void myLoop() {

}

String process(String str) {
    Serial.println(str);
    //if (str == "Button1: Button1")
    // return "Received!";
    return "";
}

How do I communicate with ESP8266 / ESP32?

To obtain data from ESP, write in Python as follows.

if Remote.Writer != None:
    Remote.Writer.WriteLine()
    Remote.Writer.Flush()
    print Remote.Reader.ReadLine()

Also, if you write the event handler lineReceived (text) in the Panel setup script as follows, you can process data from ESP asynchronously.

def lineReceived(text):
    print text
Remote.RaiseEvents = True


The following is a sample sketch for ESP32.
For ESP 8266, replace the Include statement.
ESP8266:
    #include <ESP8266WiFi.h>
    #include <WiFiClient.h>
ESP-WROOM-32:
    #include <WiFi.h>

------------------- from here -----------------
#include <WiFi.h>

const char* ssid = "your-ssid";
const char* password = "your-password";

WiFiServer server(2002);
WiFiClient client;

String process(String str);

void setup() {
  Serial.begin(57600);

  mySetup();

  Serial.println();
  Serial.print("Connecting to ");
  Serial.println(ssid);
  //WiFi.mode(WIFI_STA);  // Disable Access Point
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }
  Serial.println("");
  Serial.println("WiFi connected"); 
  Serial.println("IP address: ");
  Serial.println(WiFi.localIP());

  server.begin();
  Serial.println("Server started");
}

void loop() {
  myLoop();

  if (!client.connected()) {
    // try to connect to a new client
    client = server.available();
  } else {
    // read data from the connected client
    if (client.available()) {
      String inputString = client.readStringUntil('\n');
      inputString.trim();
      String outputString = process(inputString);
      if (outputString != "") {
        client.println(outputString);       
      }
    }
  }
}

void mySetup() {

}

void myLoop() {

}

String process(String str) {
  Serial.println(str);
  //if (str == "Button1: Button1")
  //  return "Received!";
  return "";
}
------------------ until here -----------------

New features

Changed to save contents when exiting edit mode

App Permissions

Allows applications to open network sockets.
Allows applications to access information about networks.