GUI Maker for ESP8266 & ESP32 - Python Inst. Panel Apk
Apk Infos
Version | 1.2.5 |
Rating | 2.8/5, based on 4 votes |
Size | 34.1 MB |
Requires Android | Android 4.1+ (Jelly Bean) |
Author's Notes | You can create the operation panel for ESP8266 and ESP32 in a short time. |
About GUI Maker for ESP8266 & ESP32 - Python Inst. Panel APK
Table Of Contents
Description
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 -----------------
Latest updates
What's new in version 1.2.5
Changed to save contents when exiting edit modeHow to install GUI Maker for ESP8266 & ESP32 - Python Inst. Panel APK on Android phone or tablet?
Download GUI Maker for ESP8266 & ESP32 - Python Inst. Panel APK file from ApkClean, then follow these steps:
Update Phone Settings
- Go to your phone Settings page
- Tap Security or Applications (varies with device)
- Check the Unknown Sources box
- Confirm with OK
Go to Downloads
- Open Downloads on your device by going to My Files or Files
- Tap the APK file you downloaded (com.rapidnack.PythonInstrumentPanel-v1.2.5-ApkClean.apk)
- Tap Install when prompted, the APK file you downloaded will be installed on your device.
Older Versions
1.2.5 (24) | 34.1 MB |
Questions & Answers
Q: What is an APK File?
A: Just like Windows (PC) systems use an .exe file for installing software, Android does the same. An APK file is the file format used for installing software on the Android operating system.
Q: If I install an APK from this website, will I be able to update the app from the Play Store?
A: Yes, absolutely. The Play Store installs APKs it downloads from Google's servers, and sideloading from a site like ApkClean.net goes through a very similar process, except you're the one performing the downloading and initiating the installation (sideloading).
As soon as the Play Store finds a version of the app newer than the one you've sideloaded, it will commence an update.
Q: Why ApkClean.net can guarantee APK 100% safe?
A: Whenever someone wants to download an APK file from ApkClean.net, we'll check the corresponding APK file on Google Play and allow user download it directly (of course, we'll cache it on our server). If the APK file does not exist on Google Play, we'll search it in our cache.
Q: What are Android App permissions?
A: Apps require access to certain systems within your device. When you install an application, you are notified of all of the permissions required to run that application.
Don't hesitate to contact us if you have any questions or concerns.
(*) is required