E3dc.Net 0.1.0

dotnet add package E3dc.Net --version 0.1.0
                    
NuGet\Install-Package E3dc.Net -Version 0.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="E3dc.Net" Version="0.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="E3dc.Net" Version="0.1.0" />
                    
Directory.Packages.props
<PackageReference Include="E3dc.Net" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add E3dc.Net --version 0.1.0
                    
#r "nuget: E3dc.Net, 0.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package E3dc.Net@0.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=E3dc.Net&version=0.1.0
                    
Install as a Cake Addin
#tool nuget:?package=E3dc.Net&version=0.1.0
                    
Install as a Cake Tool

E3DC.NET

NuGet Docker License Build

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.

E3dc

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 snapshotsEmsPowerSnapshot, 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.

Dashboard top

History

Query E3DC on-device stored data across day, week, month, and year resolutions. Results are displayed as bar charts.

History

Explorer

Live tag tree showing every polled RSCP tag with its current value — useful for discovering what your device exposes.

Explorer

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.

Request Builder

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

📖 e3dc.leberkas.org

License

MIT

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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