
The Nervous System
Of The Grid.
Batteries are no longer just chemistry; they are code. We engineer the full-stack IoT infrastructure—from Rust-based Edge Agents to Cross-Platform Control Interfaces.
What is Energy Intelligence Software?
Energy Intelligence software is a full-stack IoT platform that bridges legacy industrial hardware (RS485 sensors, Modbus devices) with cloud-based analytics and control. It includes edge agents (Rust/Tauri) running on local hardware, relay servers tunneling industrial protocols over TCP/IP, and fleet operations dashboards enabling Over-The-Air firmware updates across thousands of distributed battery systems. For energy storage, it transforms passive batteries into software-defined assets with real-time optimization, predictive maintenance, and autonomous response to grid events.
Industrial IoT Bridge
Legacy hardware speaks Serial (RS485). The cloud speaks TCP/IP. We bridge the gap with high-concurrency Go-based Relay Servers that tunnel industrial protocols securely over the web.
- Multi-Client TCP Listener
- Virtual COM Port Proxy
Edge Control Interface
Native performance meets web flexibility. We build Tauri / Rust desktop apps (Windows/Linux) that give operators real-time, low-latency control over BESS racks without browser lag.
- < 20MB Memory Footprint
- WebSocket Real-time Data
Fleet Operations & OTA
Managing 1,000+ assets requires automation. Our Dynamic Update Server handles strict security signatures (.sig) to push Over-the-Air firmware updates to distributed edge devices.
- Ed25519 Signature Verification
- Differential Updates
package main
import (
"net"
"github.com/wattality/protocol"
)
// Industrial IoT Relay: Tunnels RS485 data via TCP/IP
func BridgeConnection(local net.Conn, remote net.Conn) {
go func() {
// High-concurrency data pump
io.Copy(remote, local)
}()
for {
packet := protocol.ReadPacket(remote)
if packet.VerifyChecksum() {
telemetry.Push(packet.Payload)
}
}
}Technical Stack.
Backend Core
- Rust (Tauri Core)
- Go (Relay Services)
- Node.js (API Gateway)
Frontend & UI
- React / TypeScript
- Tailwind CSS
- D3.js Visualization
Communication
- WebSocket (Real-time)
- Modbus TCP / RTU
- gRPC Internal
Security
- Ed25519 Signatures
- AES-256 Encryption
- Role-Based Access
Digitize Your Asset.
Don't let legacy hardware hold back your intelligence. Let's engineer the software layer your grid assets deserve.
Start Integration