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

homebridge-aristonnet

v1.3.1

Published

A plugin for control Ariston Water Heater

Readme

Here’s a more polished and detailed version of the README for your Homebridge AristonNet plugin:


Homebridge AristonNet

Homebridge Plugin for Ariston Aqua Water Heaters


Description

This Homebridge plugin allows you to seamlessly control your Ariston Aqua Water Heater devices, such as the Andris and Slim models, through the AristonNet platform. It provides functionalities to get the current temperature, set a target temperature, and turn the heater on/off directly from the Homebridge interface.

Key Features:

  • Temperature Control: Get real-time temperature data and set a new target temperature for your water heater.
  • Power Control: Turn the heater on or off as needed.
  • Device Compatibility: Works with Ariston devices that are connected via the AristonNet platform.

Requirements:

  • AristonNet Account: You need an account on the AristonNet platform (ariston-net.remotethermo.com), which is the same as the Ariston mobile app.
  • PlantID: Locate the PlantID for your device in the URL when logged into the AristonNet platform.

Setup Instructions:

  1. Log in to AristonNet: Go to the AristonNet website and log in with your credentials.
  2. Find your PlantID: In the URL of your device page, find your PlantID to configure the plugin.
  3. Configure the Plugin: Input your AristonNet account credentials and PlantID into the Homebridge configuration file (config.json).

Installation

Follow these steps to install and configure the plugin:

  1. Install Homebridge:
    npm install -g homebridge
  2. Install the AristonNet Plugin:
    npm install -g homebridge-aristonnet
  3. Configure the Plugin: Add the necessary details (email, password, PlantID) to your Homebridge configuration file.

Alternative Installation (Manual):

If you prefer manual installation (e.g., from a fork):

  • Clone the Git repository to a local directory (e.g., /usr/local/homebridge/plugins/homebridge-aristonnet).
  • Set the plugin directory in the Homebridge options: -P /usr/local/homebridge/plugins (typically via HOMEBRIDGE_OPTS in /etc/default/homebridge).

Configuration

Here is an example configuration for adding the Ariston Water Heater to Homebridge (config.json):

"accessories": [
  {
    "accessory": "AristonWaterHeater",
    "name": "My Heater",             // Customizable device name
    "username": "[email protected]",   // Your AristonNet email
    "password": "your_password",     // Your AristonNet password
    "plantId": "your_plant_id",      // Device-specific PlantID
    "model": "VELIS Tech Dry",       // Customizable model name
    "serial_number": "123456789",    // Optional serial number
    "minTemperature": 40,            // Min Temperature
    "maxTemperature": 80             // Max Temperature
  }
]

Replace the placeholders with your actual credentials and device information.


To-Do List

  • UI Enhancement: Add a user interface for inputting and updating email and password.
  • Code Refactoring: Improve code structure for maintainability and performance.

Feel free to adapt or expand further as you develop more features for the plugin!