Coder Social home page Coder Social logo

robbiet480 / addon-nut Goto Github PK

View Code? Open in Web Editor NEW

This project forked from hassio-addons/addon-nut

0.0 1.0 0.0 624 KB

Network UPS Tools - Home Assistant Community Add-ons

Home Page: https://addons.community

License: MIT License

Dockerfile 16.18% Shell 83.82%

addon-nut's Introduction

Home Assistant Community Add-on: Network UPS Tools

GitHub Release Project Stage License

Supports armhf Architecture Supports armv7 Architecture Supports aarch64 Architecture Supports amd64 Architecture Supports i386 Architecture

GitLab CI Project Maintenance GitHub Activity

Discord Community Forum

Buy me a coffee

A Network UPS Tools daemon to allow you to easily manage battery backup (UPS) devices connected to your Hass.io machine.

About

The primary goal of the Network UPS Tools (NUT) project is to provide support for Power Devices, such as Uninterruptible Power Supplies, Power Distribution Units, Automatic Transfer Switch, Power Supply Units and Solar Controllers.

NUT provides many control and monitoring features, with a uniform control and management interface.

More than 140 different manufacturers, and several thousands models are compatible.

The Network UPS Tools (NUT) project is the combined effort of many individuals and companies.

Be sure to add a NUT Sensor to your configuration.yaml after starting the add-on:

sensor:
  - platform: nut
    name: "CyberPower 1500"
    host: a0d7b954-nut
    username: nutty
    password: changeme
    resources:
      - battery.charge
      - battery.runtime
      - ups.load
      - ups.status

For more information on how to configure the NUT Sensor in Home Assistant see the NUT Sensor documentation.

Installation

The installation of this add-on is pretty straightforward and not different in comparison to installing any other Home Assistant add-on.

  1. Search for the "Network UPS Tools" add-on in the Home Assistant add-on store and install it.
  2. Install the "Network UPS Tools" add-on.
  3. Configure the users and devices options.
  4. Start the "Network UPS Tools" add-on.
  5. Check the logs of the "Network UPS Tools" add-on to see if everything went well.
  6. Configure NUT Sensor in your configuration.yaml file.

Configuration

The add-on can be used with the basic configuration, with other options for more advanced users.

Note: Remember to restart the add-on when the configuration is changed.

Network UPS Tools add-on configuration:

users:
  - username: nutty
    password: changeme
    instcmds:
      - all
    actions: []
devices:
  - name: myups
    driver: usbhid-ups
    port: auto
    config: []
mode: netserver
shutdown_hassio: 'false'

Note: This is just an example, don't copy and paste it! Create your own!

Option: log_level

The log_level option controls the level of log output by the add-on and can be changed to be more or less verbose, which might be useful when you are dealing with an unknown issue. Possible values are:

  • trace: Show every detail, like all called internal functions.
  • debug: Shows detailed debug information.
  • info: Normal (usually) interesting events.
  • warning: Exceptional occurrences that are not errors.
  • error: Runtime errors that do not require immediate action.
  • fatal: Something went terribly wrong. Add-on becomes unusable.

Please note that each level automatically includes log messages from a more severe level, e.g., debug also shows info messages. By default, the log_level is set to info, which is the recommended setting unless you are troubleshooting.

Option: users

This option allows you to specify a list of one or more users. Each user can have its own privileges like defined in the sub-options below.

Refer to the upsd.users(5) documentation for more information.

Sub-option: username

The username the user needs to use to login to the NUT server. A valid username contains only a-z, A-Z, 0-9 and underscore characters (_).

Sub-option: password

Set the password for this user.

Sub-option: instcmds

A list of instant commands that a user is allowed to initiate. Use all to grant all commands automatically.

Sub-option: actions

A list of actions that a user is allowed to perform. Valid actions are:

  • set: change the value of certain variables in the UPS.
  • fsd: set the forced shutdown flag in the UPS. This is equivalent to an "on battery + low battery" situation for the purposes of monitoring.

The list of actions is expected to grow in the future.

Sub-option: upsmon

Add the necessary actions for a upsmon process to work. This is either set to master or slave. If creating an account for a netclient setup to connect this should be set to slave.

Option: devices

This option allows you to specify a list of UPS devices attached to your system.

Refer to the ups.conf(5) documentation for more information.

Sub-option: name

The name of the UPS. The name default is used internally, so you can’t use it in this file.

Sub-option: driver

This specifies which program will be monitoring this UPS. You need to specify the one that is compatible with your hardware. See nutupsdrv(8) for more information on drivers in general and pointers to the man pages of specific drivers.

Sub-option: port

This is the serial port where the UPS is connected. The first serial port usually is /dev/ttyS0. Use auto to automatically detect the port.

Sub-option: config

A list of additional options to configure for this UPS. The common usbhid-ups driver allows you to distinguish between devices by using a combination of the vendor, product, serial, vendorid, and productid options:

devices:
  - name: mge
    driver: usbhid-ups
    port: auto
    config:
      - vendorid = 0463
  - name: apcups
    driver: usbhid-ups
    port: auto
    config:
      - vendorid = 051d*
  - name: foocorp
    driver: usbhid-ups
    port: auto
    config:
      - vendor = "Foo.Corporation.*"
  - name: smartups
    driver: usbhid-ups
    port: auto
    config:
      - product = ".*(Smart|Back)-?UPS.*"

Option: mode

Recognized values are netserver and netclient.

  • netserver: Runs the components needed to manage a locally connected UPS and allow other clients to connect (either as slaves or for management).
  • netclient: Only runs upsmon to connect to a remote system running as netserver.

Option: shutdown_hassio

When this option is set to true on a UPS shutdown command, the Hassio system will be shutdown. When set to false only the add-on will be stopped. This is to allow testing without impact to the system.

Option: list_usb_devices

When this option is set to true, a list of connected USB devices will be displayed in the add-on log when the add-on starts up. This option can be used to help identify different UPS devices when multiple UPS devices are connected to the system.

Option: remote_ups_name

When running in netclient mode, the name of the remote UPS.

Option: remote_ups_host

When running in netclient mode, the host of the remote UPS.

Option: remote_ups_user

When running in netclient mode, the user of the remote UPS.

Option: remote_ups_password

When running in netclient mode, the password of the remote UPS.

Note: When using the remote option, the user and device options must still be present, however they will have no effect

Option: fake_usb_devices

Creates fake USB devices to fix problems with Cyber Power UPSes. Only enable this if you sure you are affected. More info

Option: upsd_maxage

Allows setting the MAXAGE value in upsd.conf to increase the timeout for specific drivers, should not be changed for the majority of users.

Option: i_like_to_be_pwned

Adding this option to the add-on configuration allows to you bypass the HaveIBeenPwned password requirement by setting it to true.

Note: We STRONGLY suggest picking a stronger/safer password instead of using this option! USE AT YOUR OWN RISK!

Option: leave_front_door_open

Adding this option to the add-on configuration allows you to disable authentication on the NUT server by setting it to true and leaving the username and password empty.

Note: We STRONGLY suggest, not to use this, even if this add-on is only exposed to your internal network. USE AT YOUR OWN RISK!

Changelog & Releases

This repository keeps a change log using GitHub's releases functionality. The format of the log is based on Keep a Changelog.

Releases are based on Semantic Versioning, and use the format of MAJOR.MINOR.PATCH. In a nutshell, the version will be incremented based on the following:

  • MAJOR: Incompatible or major changes.
  • MINOR: Backwards-compatible new features and enhancements.
  • PATCH: Backwards-compatible bugfixes and package updates.

Support

Got questions?

You have several options to get them answered:

You could also open an issue here GitHub.

Contributing

This is an active open-source project. We are always open to people who want to use the code or contribute to it.

We have set up a separate document containing our contribution guidelines.

Thank you for being involved! 😍

Authors & contributors

The original setup of this repository is by Dale Higgs.

For a full list of all authors and contributors, check the contributor's page.

We have got some Home Assistant add-ons for you

Want some more functionality to your Home Assistant instance?

We have created multiple add-ons for Home Assistant. For a full list, check out our GitHub Repository.

License

MIT License

Copyright (c) 2018-2020 Dale Higgs

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.