erminesoft logo
Go

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

Published by  RapidNack.com
  • Category
    Tools
  • Developer
    RapidNack.com
  • Downloads
    1000+
  • Android Version
    4.1 and up
  • Content Rating
    Everyone
GUI Maker for ESP8266 & ESP32 - Python Inst. Panel PC screenshot 1GUI Maker for ESP8266 & ESP32 - Python Inst. Panel PC screenshot 2GUI Maker for ESP8266 & ESP32 - Python Inst. Panel PC screenshot 3

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 -----------------

How to Install GUI Maker for ESP8266 & ESP32 - Python Inst. Panel for Windows PC or MAC:

GUI Maker for ESP8266 & ESP32 - Python Inst. Panel is an Android Tools app developed by RapidNack.com and published on the Google play store. It has gained around 1000 installs so far, with an average rating of 2.0 out of 5 in the play store.

GUI Maker for ESP8266 & ESP32 - Python Inst. Panel requires Android with an OS version of 4.1 and up. In addition, the app has a content rating of Everyone, from which you can decide if it is suitable to install for family, kids, or adult users. GUI Maker for ESP8266 & ESP32 - Python Inst. Panel is an Android app and cannot be installed on Windows PC or MAC directly.

Android Emulator is a software application that enables you to run Android apps and games on a PC by emulating Android OS. There are many free Android emulators available on the internet. However, emulators consume many system resources to emulate an OS and run apps on it. So it is advised that you check the minimum and required system requirements of an Android emulator before you download and install it on your PC.

Below you will find how to install and run GUI Maker for ESP8266 & ESP32 - Python Inst. Panel on PC:

  • Firstly, download and install an Android emulator to your PC
  • Download GUI Maker for ESP8266 & ESP32 - Python Inst. Panel APK to your PC
  • Open GUI Maker for ESP8266 & ESP32 - Python Inst. Panel APK using the emulator or drag and drop the APK file into the emulator to install the app.
  • If you do not want to download the APK file, you can install GUI Maker for ESP8266 & ESP32 - Python Inst. Panel PC by connecting your Google account with the emulator and downloading the app from the play store directly.

If you follow the above steps correctly, you should have the GUI Maker for ESP8266 & ESP32 - Python Inst. Panel ready to run on your Windows PC or MAC. In addition, you can check the minimum system requirements of the emulator on the official website before installing it. This way, you can avoid any system-related technical issues.

Download GUI Maker for ESP8266 & ESP32 - Python Inst. Panel For PC

GUI Maker for ESP8266 & ESP32 APK 1.2.534.08 MB1.2.5