npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

iobroker.wbec

v0.4.6

Published

Integration of Heidelberg WallBox Energy Control ESP8266

Downloads

17

Readme

Logo

ioBroker.wbec

NPM version Downloads Number of Installations Current version in stable repository

NPM

Tests: Test and Release

wbec adapter for ioBroker

Integration of Heidelberg WallBox Energy Control ESP8266

Description

The ioBroker WBEC Adapter allows you to regularly monitor and control the state of your WBEC Controller. This adapter provides the capability to query the controller at a configurable interval and to interact with certain important states. For example, you can monitor charging power and directly adjust the configuration for PV surplus charging.

Features

  • Regular Queries: The adapter queries the state of the WBEC Controller at an interval you specify, ensuring that you always have up-to-date information on its status.
  • Writable States: You can directly adjust certain parameters, such as charging power and the configuration for PV surplus charging, through the ioBroker interface.

Manufacturer Information

The WBEC Controller is developed by Stefan Ferstl steff393. Many thanks for providing this excellent controller and for the support!

For more information and technical details, please visit the Manufacturer’s website.

Messages

setCurrent

Sets the current limit for a charging box directly without modifying adapter states.

Parameters:

  • id: Box ID (0-15)
  • currLim: Current limit in ampere

Example:

// Set charging current to 16A for box 0 
sendTo('wbec.0', 'setCurrLim', { id: 0, currLim: 16 });

setPowerTarget

Sets the current limit depending on phases and voltage to match the target power.

Parameters:

  • id: Box ID (0-15)
  • powerTarget: Power in watt

Example:

// Set charging power to 3600W for box 0 
sendTo('wbec.0', 'setPowerTarget', { id: 0, powerTarget: 3600 });

Open Tasks

  • Try to reset wbec client on connection error
  • Set Standby to 4 after adapter startup if equals zero

Changelog

0.4.6 (2025-06-02)

  • [FEATURE] Add separate boolean states vehiclePlugged, vehicleChargingRequest, chargingAllowed defined by chgStat
  • [FEATURE] Add further writable states: standby, remLock, wdTmOut, curLimFs

0.4.5 (2025-05-26)

  • [BUGFIX] Avoid exception if charge log is empty
  • [TASK] Add warn logging, if resCode is not zero

0.4.4 (2025-05-25)

  • [TASK] Add translations for all states

0.4.3 (2025-05-22)

  • [UPDATE] Update @iobroker/adapter-dev to 1.4.0
  • [UPDATE] Update @iobroker/testing to 5.0.4

0.4.2 (2025-05-22)

  • [UPDATE] Update @iobroker/adapter-core to 3.2.3
  • [UPDATE] Update admin dependency to 7.4.10

0.4.1 (2025-05-22)

  • [BUGFIX] Update node version for github workflows
  • [REFACTOR] Fix eslint and apply suggestions

0.4.0 (2025-05-22)

  • [REFACTOR] Fix various issues reported from adapter checker
  • [FEATURE] Assert all timers are reset onUnload adapter

0.3.1 (2025-05-22)

  • [BUGFIX] Assert set current values are in valid range between 6..16 or 0

0.3.0 (2025-05-21)

  • [FEATURE] Add debug logging for every request
  • [FEATURE] Filter onStateChange events to avoid handling on unchanged values
  • [FEATURE] Add message handler to receive setPowerTarget messages
  • [FEATURE] Add phasesAvailable state that remains at last used phases
  • [FEATURE] Add setCurrent message handler to allow setting currLim for box without modifying states.

0.2.0 (2025-05-15)

  • [REFACTOR] Replace internal wbec client by separate library https://www.npmjs.com/package/wbec-client
  • [FEATURE] New maxRequestInterval parameter asserts that wbec is not flooded with requests
  • [BUGFIX] charge logs only get requested if enabled on wbec config

0.1.4 (2025-04-24)

  • [BUGFIX] Slow down initial requests to avoid wbec overload on adapter start

0.1.3 (2024-11-30)

  • [BUGFIX] Allow configurable Timeout for requests

0.1.2 (2024-09-19)

  • [TASK] Add admin link to wbec

0.1.1 (2024-09-17)

  • [TASK] Add error handling on external requests
  • [TASK] Update dependencies from dependabot

0.1.0 (2024-09-08)

  • [TASK] initial release

License

Licensed under GPLv3 Copyright (c) 2025 jb-io