Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Homebridge Plugin for Linux temperature sensors

License

Notifications You must be signed in to change notification settings

cmsj/homebridge-linux-temperature

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

homebridge-linux-temperature

A homebridge temperature sensor for Linux temperatures. Based on the fork by Peter Harry at https://github.com/GreyPeter/homebridge-pi-lm75 Based on origial code by Mark Webb-Johnson mark@webb-johnson.net. See original code here: https://github.com/markwj/homebridge-pi

Installation

  1. Install Homebridge using: npm install -g homebridge
  2. Install this plugin using: npm install -g homebridge-linux-temperature
  3. Update your Homebridge config.json using the sample below.

Configuration

{
  "accessory": "LinuxTemperature",
  "name": "Sensor Temperature",
  "sensor_path": "/sys/bus/platform/devices/coretemp.0/hwmon/hwmon0/temp1_input",
  "divisor": 1000
}

Fields:

  • accessory must be "LinuxTemperature" (required).
  • name is the name of the published accessory (required).
  • sensor_path is the path to a file (typically in /sys or /proc that contains just the temperature value (required).
  • divisor is the amount to divide the temperature value by (e.g. typically Linux provides milli-degrees, so a divisor of 1000 gives degrees)

About

Homebridge Plugin for Linux temperature sensors

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%