MakerLab
ArduinoArduino Edge Control

Arduino Edge Control: Your Gateway to Industrial IoT

A rugged, ESP32-powered board designed for industrial automation and IoT applications, bridging the gap between the maker world and professional environments.

Arduino Edge Control

The Arduino Edge Control is a specialized microcontroller board released around 2021, designed to bring the power and flexibility of Arduino to more demanding industrial and IoT applications. It leverages the robust capabilities of the Espressif ESP32-WROOM-32 microcontroller, a popular choice for its integrated Wi-Fi and Bluetooth connectivity, alongside its strong processing power and extensive peripheral set. This board is positioned as a bridge, allowing makers, students, and engineers to prototype and deploy solutions that require reliability, connectivity, and a degree of ruggedness not typically found in standard Arduino boards.

At its heart, the Arduino Edge Control features the ESP32-WROOM-32 module. This module is based on the Tensilica Xtensa LX6 dual-core processor, running at up to 240 MHz. The ESP32 is renowned for its low-power operation modes, extensive GPIO options, and built-in hardware accelerators for Wi-Fi and Bluetooth. The Edge Control board specifically enhances this by providing a more industrial form factor, often with screw terminals for robust connections, and protection circuitry suitable for harsher environments. This makes it an ideal candidate for applications in smart agriculture, industrial monitoring, predictive maintenance, and remote data acquisition.

Compared to other Arduino boards, the Edge Control stands out due to its focus on connectivity and industrial integration. While boards like the Arduino Uno are excellent for learning and general-purpose projects, they lack the integrated wireless capabilities and the robust connectivity options of the Edge Control. Boards like the Arduino Nano 33 IoT offer similar connectivity but often in a smaller form factor. The Edge Control, with its DIN rail mountability and screw terminals, is clearly aimed at deployment in control cabinets and industrial settings, making it a step up from typical hobbyist boards towards professional embedded systems. Its release reflects Arduino's strategy to cater to a broader range of users, including those in professional engineering fields.

This board is best suited for makers and engineers who need to develop connected devices for real-world applications, particularly those involving industrial environments or the Internet of Things. It's for users who require reliable Wi-Fi or Bluetooth communication, the ability to interface with various sensors and actuators through robust connectors, and a platform that can be easily integrated into existing industrial setups. Whether you're building a remote environmental monitoring station, a smart factory sensor node, or a control system for automation, the Arduino Edge Control provides the necessary hardware foundation and connectivity to bring your ideas to life with a professional touch.

Watch

Related video, embedded from YouTube.

Specifications

Microcontroller / SoCEspressif ESP32-WROOM-32
ArchitectureTensilica Xtensa LX6 Dual-Core
Clock speedUp to 240 MHz
Flash / Storage4 MB integrated flash memory
RAM / SRAM520 KB SRAM
Operating voltage3.3V
Digital I/O pins34 (including ADC, DAC, touch, SPI, I2C, UART)
Analog / ADC12-bit ADC, up to 18 channels
PWMYes, on multiple GPIO pins
ConnectivityWi-Fi 802.11 b/g/n, Bluetooth v4.2 BR/EDR and BLE
USBMicro-USB connector for programming and power
Power input5V via Micro-USB or VIN terminal (7-12V recommended)
DimensionsSpecific dimensions vary by enclosure, but the PCB is designed for DIN rail mounting

Pinout & pin functions

PinFunction
VINMain power input terminal (7-12V recommended)
GNDGround terminal
3V33.3V power output
ENEnable pin (active high)
GPIO0General purpose I/O, also boot mode selection
GPIO1 (TX0)UART0 Transmit
GPIO2General purpose I/O
GPIO3 (RX0)UART0 Receive
GPIO4General purpose I/O
GPIO5General purpose I/O, also SPI CS1
GPIO12 (MTDI)General purpose I/O, also SPI MISO
GPIO13 (MTCK)General purpose I/O, also SPI SCK
GPIO14 (MTMS)General purpose I/O, also SPI MOSI
GPIO15General purpose I/O
GPIO16 (RX2)UART2 Receive
GPIO17 (TX2)UART2 Transmit
GPIO18General purpose I/O, also SPI MOSI
GPIO19General purpose I/O, also SPI MISO
GPIO21General purpose I/O, also I2C SDA
GPIO22General purpose I/O, also I2C SCL
GPIO23General purpose I/O, also SPI SCK
GPIO25Analog Output (DAC), General purpose I/O
GPIO26Analog Output (DAC), General purpose I/O
GPIO27Analog Input (ADC), General purpose I/O
GPIO32Analog Input (ADC), General purpose I/O
GPIO33Analog Input (ADC), General purpose I/O
GPIO34Analog Input (ADC only), General purpose I/O (input only)
GPIO35Analog Input (ADC only), General purpose I/O (input only)
GPIO36 (VP)Analog Input (ADC only), General purpose I/O (input only)
GPIO39 (VN)Analog Input (ADC only), General purpose I/O (input only)
5V5V power output (from USB or VIN)
GNDGround
Micro-USBPower and programming interface

Wiring & circuit basics

Powering the Arduino Edge Control requires careful consideration to ensure both the board and connected peripherals are protected. The board can be powered via the Micro-USB port, which typically supplies 5V, or through the VIN terminal block, which accepts a wider voltage range, generally recommended between 7V and 12V. An onboard voltage regulator steps this down to the 3.3V required by the ESP32 and most of its peripherals. It is crucial to connect the correct voltage to VIN; exceeding the recommended maximum can damage the board. Ensure your power supply can provide sufficient current, especially when using Wi-Fi or Bluetooth, as these can draw significant power spikes. Always connect ground (GND) to your power supply's ground and the board's GND terminal for a common reference voltage.

The Arduino Edge Control operates at a logic level of 3.3V. This means that digital input pins expect signals between 0V (LOW) and 3.3V (HIGH). Applying a 5V signal directly to a 3.3V input pin can permanently damage the ESP32. If you need to interface with 5V logic devices, such as many older sensors or actuators, you must use a logic level converter or a voltage divider circuit to step down the voltage. Conversely, the 3.3V output from the board can drive 3.3V-compatible devices directly. When connecting components, always refer to their datasheets to confirm their operating voltage and logic level requirements.

A simple example circuit involves connecting an LED: Connect the anode (longer leg) of an LED to a digital GPIO pin (e.g., GPIO2) via a current-limiting resistor (typically 220-330 ohms). Connect the cathode (shorter leg) of the LED to a GND pin on the board. When the GPIO pin is set HIGH (3.3V), current flows through the resistor and LED, illuminating it. For an I2C sensor, connect its VCC pin to the board's 3.3V output, its GND pin to a GND terminal, its SDA pin to GPIO21, and its SCL pin to GPIO22. Ensure the sensor also operates at 3.3V logic levels or use a level shifter if necessary.

Programming & getting started

The Arduino Edge Control is primarily programmed using the Arduino IDE. After installing the ESP32 board support package within the Arduino IDE (via the Board Manager), you can select the 'Arduino Edge Control' or a similar ESP32 Dev Module from the board list. The ESP32-WROOM-32 module supports C/C++ programming through the Arduino framework. Uploading code is done via the Micro-USB port. Ensure the correct COM port is selected in the IDE, and press the upload button. For more advanced users, the ESP-IDF (Espressif IoT Development Framework) or PlatformIO IDE can also be used, offering more control and features, especially for complex projects. MicroPython and CircuitPython are also viable options for the ESP32, allowing for Python-based development.

To upload your first program, connect the Arduino Edge Control to your computer via the Micro-USB cable. Open the Arduino IDE, go to File > Examples > 01.Basics > Blink. Select the correct board and COM port. Then, click the Upload button. The board will typically enter bootloader mode automatically, or you may need to press the BOOT button (often labeled '0') while pressing and releasing the RESET button before uploading. Once uploaded, the onboard LED (often connected to GPIO2) should start blinking, confirming your setup is working.

Project ideas

Industrial Temperature MonitorBuild a system to monitor and log temperatures from multiple industrial sensors using I2C or analog inputs. The board's robust connectivity and Wi-Fi allow real-time data streaming to a cloud platform for analysis and alerts, teaching sensor interfacing and IoT data transmission.
Smart Agriculture Sensor HubCreate a device to measure soil moisture, ambient temperature, and humidity, transmitting the data wirelessly via Wi-Fi to a web dashboard. This project utilizes ADC pins for analog sensors and Wi-Fi for communication, demonstrating remote environmental monitoring.
Predictive Maintenance NodeDevelop a vibration and temperature monitoring node for industrial machinery. Use analog inputs for sensors and analyze the data locally or send it over Bluetooth to a central gateway for early fault detection, learning about embedded data analysis and wireless communication.
Remote Control SwitchDesign a Wi-Fi enabled switch to remotely control a piece of industrial equipment. This involves using digital output pins to control relays and Wi-Fi for receiving commands from a web interface or mobile app, teaching control systems and network communication.
Energy Consumption MeterMeasure the power consumption of an industrial device using a current sensor connected to an analog input. Transmit the data periodically via Wi-Fi to a server for energy management and reporting, focusing on analog signal processing and IoT data logging.
Factory Floor Data LoggerAggregate data from various sensors (e.g., pressure, flow, temperature) on the factory floor using the board's multiple I/O and communication interfaces (UART, I2C, SPI). Store data locally or send it to an on-premise server via Wi-Fi for process optimization, illustrating industrial data acquisition and networking.

Buying tips & gotchas

When purchasing the Arduino Edge Control, ensure you are buying from a reputable source to avoid counterfeit or low-quality modules. The ESP32-WROOM-32 is a powerful chip, but its 3.3V logic level is a common pitfall for beginners used to 5V Arduino boards; always use level converters when interfacing with 5V components. Consider investing in screw terminal breakout boards or DIN rail enclosures to fully leverage the industrial design of the Edge Control. For power, a stable 5V supply via USB or a regulated 7-12V supply to VIN is recommended. Ensure your Wi-Fi network is suitable for IoT deployments, and be mindful of the ESP32's power consumption, especially when running on battery.