Skip to content

Releases: Tom-Hirschberger/MMM-Temperature

Release 0.0.10

21 Aug 11:32
20f3f32
Compare
Choose a tag to compare

This is release 0.0.10 with the following changes:

  • added a wrapper script to call the Python scripts within a virtual environment
  • updated the instructions and default values to use the new wrapper script

Release 0.0.9

19 Jun 09:14
112176d
Compare
Choose a tag to compare

This is release 0.0.9 with the following changes:

  • added support for SHTC3 sensors

Release 0.0.8

05 Aug 12:24
258a21f
Compare
Choose a tag to compare

This is release 0.0.8 with the following changes:

  • use spawnSync instead of execSync to call the scripts now. execSync caused "Error: write EFAULT" exceptions so this change was necessary

Release 0.0.7

26 Nov 16:11
25fec99
Compare
Choose a tag to compare

This is release 0.0.7 with the following new features:

  • The values send via notification now can be parsed if they are in JSON version 5 format, too

Release 0.0.6

25 Feb 08:57
976bfa5
Compare
Choose a tag to compare

This new version 0.0.6 provides the following features:

  • the bme280 scripts now supports setting the I2C address via command line

Release 0.0.5

18 Jan 12:00
4f73931
Compare
Choose a tag to compare

This new version 0.0.5 provides the following features:

  • additional values like wind speed, uv and rain can be displayed now
  • modified some of the examples to get a more reliable wifi connection on the esp32 boards and added a new example

Release 0.0.4

16 Mar 11:53
755cfe3
Compare
Choose a tag to compare

This new version 0.0.4 provides the following features:

  • the values of sensors no can be updated in a single notification which has an json structure as payload. if the keys "temperature_c", "temperature_f" or "humidity" are present the values get updated. if either "temperature_c" or "temperature_f" is missing but the other one is present the missing value is calculated automatically.

Release 0.0.3

14 Feb 14:16
b4d842e
Compare
Choose a tag to compare

This new version 0.0.3 provides the following features:

  • it is now possible to specify a useValueCnt for each sensor. If the sensor provides data less periodically than the updateInterval (i.e. because the sensor sends the data via MQTT less frequently) the data can be used multiple intervals before it gets invalidated and "na" will be displayed.
  • added an example of howto provide data of an DHT11 (or DHT21, DHT22) sensor connected to an ESP8266 board which uses MQTT and deep sleep.
  • added an example of howto provide data of an DHT11 (or DHT21, DHT22) sensor connected to an ESP8266 board which uses plain tcp

Release 0.0.2

10 Feb 15:22
9b36b77
Compare
Choose a tag to compare

This new version provides the following improvements:

  • The values of sensors now can be updated via notification now.
  • It is possible to hide the temperature and humidity section for either all sensors or specific ones.
  • There are now scripts included to read values of DHT11, DHT22, BME280, HTU21 or DS18B20 connected to the Raspberry Pi.
  • There are different examples of howto read values of sensors connected to micro controllers via plain TCP or MQTT (with help of the MMM-MQTTbridge module).
  • As every wrapper now gets specific css classes assign you can customize the colors more easy

Release 0.0.1

29 Apr 12:55
Compare
Choose a tag to compare

A first working version of the module with the following features:

  • read temperature of sensors by calling scripts with arguments
  • multiple sensors with different data scripts can be added
  • sensors can be displayed with or without name
  • an example script to read the data of an HTU21 sensor attached to the I2C bus of the raspberry is included and will be used as default data source
  • an example of how to connect an HTU21 sensor to an ESP32 micro controller with build-in wifi is included also