E3dc.Net
0.1.0
dotnet add package E3dc.Net --version 0.1.0
NuGet\Install-Package E3dc.Net -Version 0.1.0
<PackageReference Include="E3dc.Net" Version="0.1.0" />
<PackageVersion Include="E3dc.Net" Version="0.1.0" />
<PackageReference Include="E3dc.Net" />
paket add E3dc.Net --version 0.1.0
#r "nuget: E3dc.Net, 0.1.0"
#:package E3dc.Net@0.1.0
#addin nuget:?package=E3dc.Net&version=0.1.0
#tool nuget:?package=E3dc.Net&version=0.1.0
E3DC.NET
A .NET 10 library for communicating with E3DC S10 home battery systems via the proprietary RSCP (Remote Storage Control Protocol) over TCP. Includes a full-featured sample dashboard application.
Overview
- Binary RSCP protocol implementation — framing, CRC32, Rijndael-256 encryption
- Akka.Streams-based reactive data pipeline with automatic reconnection
- Typed snapshot API covering all major RSCP namespaces: EMS, BAT, PVI, PM, DCDC, EP, WB, DB, INFO
- Sample web dashboard demonstrating real-time monitoring, history queries, live tag exploration, and protocol-level request building
Features
- Protocol layer — full binary framing, CRC32 validation, Rijndael-256 AES-compatible encryption
- Fluent request builder — type-safe tag descriptors for every RSCP namespace
- Typed snapshots —
EmsPowerSnapshot,BatterySnapshot,InverterSnapshot,PowerMeterSnapshot,DcdcSnapshot,EpSnapshot,WallboxSnapshot, and more - Reactive pipeline — Akka.Streams source with automatic TCP reconnection and backpressure
- Tiered polling — fast (2 s), medium (10 s), and startup tiers with demand-driven activation
Dashboard Sample
A four-tab web dashboard demonstrating end-to-end usage of the connector.
Dashboard
Real-time energy flow schematic, scrollable power history chart, live KPI tiles, and detailed status panels for battery, inverter, power meter, DCDC converter, emergency power, and wallbox.
History
Query E3DC on-device stored data across day, week, month, and year resolutions. Results are displayed as bar charts.
Explorer
Live tag tree showing every polled RSCP tag with its current value — useful for discovering what your device exposes.
Request Builder
Three-panel RSCP protocol workbench: tag browser, request composer, and raw response viewer. Lets you craft arbitrary RSCP requests and inspect the parsed response.
Quick Start
# Clone
git clone https://github.com/Leberkas-org/e3dc.net.git
cd e3dc.net
# Configure — fill in your E3DC credentials
# Edit samples/E3dc.Net.Dashboard/appsettings.json
# Run
dotnet run --project samples/E3dc.Net.Dashboard
# Or with Docker
cd samples && docker compose up -d --build
Project Structure
src/
E3dc.Net/ Core RSCP protocol library (framing, encryption, request builder, typed snapshots)
samples/
E3dc.Net.Dashboard/ Full web dashboard application
docs/ VitePress documentation site
test/
E3dc.Net.Tests/ Unit tests
Configuration
Edit samples/E3dc.Net.Dashboard/appsettings.json:
{
"E3DC": {
"Host": "192.168.1.100",
"User": "",
"Password": "",
"RscpKey": "",
"FastPollingIntervalSeconds": 2,
"MediumPollingIntervalSeconds": 10,
"HistoryRetentionMinutes": 60,
"BatDeviceIndex": 0,
"PviDeviceIndex": 0,
"PmDeviceIndex": 6,
"DcdcDeviceIndex": 0,
"WbDeviceIndex": 0
}
}
| Field | Description |
|---|---|
Host |
IP address of the E3DC S10 on your local network |
User / Password |
E3DC portal credentials |
RscpKey |
RSCP encryption key set in the E3DC device settings |
*DeviceIndex |
Zero-based device indices (check your installation; PM default is 6) |
Documentation
License
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Akka.Streams (>= 1.5.68)
- BouncyCastle.Cryptography (>= 2.6.2)
- System.IO.Hashing (>= 9.0.16)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.1.0 | 88 | 5/22/2026 |