Skip to content

AutoConnect utilization aid to integrate individual device and custom web pages for Arduino ESP8266/ESP32

License

Notifications You must be signed in to change notification settings

Hieromon/EdgeUnified-eval

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EdgeUnified evaluation

AutoConnect utilization aid to integrate individual device and custom web pages for Arduino ESP8266/ESP32.

This project is a pilot and this repository exists to evaluate the feasibility of the goals of this project.

Aims of EdgeUnified

By leveraging EdgeUnified, Sketch can integrate multiple devices and their corresponding custom web pages into a single application. The library provides classes and programming models for integration and extends the functionality of AutoConnect, a WiFi connectivity aid for ESP8266/ESP32.

Sketches using AutoConnect, for example, owns the logic around IO, such as MQTT publishing and GPIO, and the UI sketch for manipulating it on a web page. These are formed by seemingly unrelated independent logic, but trying to integrate them into one tends to complicate the main sketch to avoid inconsistent processing order and conflicting variables.

In addition, similar processes that are normally required, such as loading custom web pages or saving configuration parameters, are scattered throughout the source code, reducing maintainability.

EdgeUnified performs these normally required routine processes on behalf of the user sketch, combining the device IO and AutoConnect custom web page pairs into a single event loop. It has the following features:

  1. EdgeUnified controls the main event loop. In the sketch, the setup function just attaches the pair of the device IO processing and the AutoConnectAux JSON definition of the corresponding UI implementation. Then, the loop function simply calls the Edge.process function.
  2. Various parameters required for device IO are saved and restored by EdgeUnified. There is no need to write those file IO operations in the user sketch.
  3. Allows periodicity in device IO processing. Periodic execution operations are performed by EdgeUnified.

To lead a project to the goal

I welcome contributions to the EdgeUnified. There are many topics to pursue availability in the EdgeUnified programming model, including functions to be implemented, use cases to be assumed, and constraints to be met. For themes suggestions, please go to the Discussions.

Issues should be presented with the minimum reproducible code and hardware conditions.

Please also follow along with this Discussions. You can see the origins of EdgeUnified there.

EdgeUnified Programming model

Currently in writing. The draft is here.

EdgeUnified classes

Currently in writing. Please refer to the function header comments in the source code for now.

Requirements

Supported hardware

  • Generic ESP8266 modules (applying the ESP8266 Community's Arduino core)
  • Adafruit HUZZAH ESP8266 (ESP-12)
  • ESP-WROOM-02
  • Heltec WiFi Kit 8
  • NodeMCU 0.9 (ESP-12) / NodeMCU 1.0 (ESP-12E)
  • Olimex MOD-WIFI-ESP8266
  • SparkFun Thing
  • SweetPea ESP-210
  • ESP32Dev Board (applying the Espressif's arduino-esp32 core)
  • SparkFun ESP32 Thing
  • WEMOS LOLIN D32
  • Ai-Thinker NodeMCU-32S
  • Heltec WiFi Kit 32
  • M5Stack
  • And other ESP8266/ESP32 modules supported by the Additional Board Manager URLs of the Arduino-IDE.

Required libraries

EdgeUnified requires the following environment and libraries.

Arduino IDE

The current upstream at the 1.8 level or later is needed. Please install from the official Arduino IDE download page. This step is not required if you already have a modern version.

ESP8266 Arduino core

AutoConnect targets Sketches made on the assumption of ESP8266 Community's Arduino core. Stable 3.0.0 or higher required and the latest release is recommended.
Install third-party platform using the Boards Manager of Arduino IDE. Package URL is http://arduino.esp8266.com/stable/package_esp8266com_index.json

ESP32 Arduino core

Also, to apply AutoConnect to ESP32, the arduino-esp32 core provided by Espressif is needed. Stable 2.0.4 or required and the latest release is recommended.
Install third-party platform using the Boards Manager of Arduino IDE. You can add multiple URLs into Additional Board Manager URLs field, separating them with commas. Package URL is https://dl.espressif.com/dl/package_esp32_index.json for ESP32.

Additional library (Required)

  1. AutoConnect library to handling the portal.
  2. PageBuilder library to build HTML.
  3. ArduinoJson library to make persistence EdgeData.

Installation

Clone or download from the EdgeUnified-eval GitHub repository.

License

Copyright (c) Hieromon Ikasamo. All rights reserved.

Licensed under the MIT license.

Special thanks

This project was inspired by the inspiration of @FRANAIRBUS. I thank giving a new perspective.

About

AutoConnect utilization aid to integrate individual device and custom web pages for Arduino ESP8266/ESP32

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages