Skip to content

Commit c45f8b3

Browse files
authored
Temporarily brighten dimmed display when touched. Update dependencies. Hide partially-completed Advanced alarm type. Update documentation for A-B-C temperature mode. (#98)
1 parent 94b4d33 commit c45f8b3

17 files changed

Lines changed: 285 additions & 129 deletions

.idea/dictionaries/kshetline.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 3.5.3
2+
3+
* Allow up to three outdoor remote temperature/humidity sensors.
4+
* Improve polling for software updates.
5+
16
## 3.5.2
27

38
* Fixed problem acknowledging alerts when alerts had non-unique ID codes.

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Astronomy/Weather Clock
22

3-
Copyright © 2018-2022 Kerry Shetline, kerry@shetline.com
3+
Copyright © 2018-2023 Kerry Shetline, kerry@shetline.com
44

55
### MIT
66

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ With your Raspberry Pi shut down and disconnected from power, connect the DHT22/
9999

100100
Also for the Raspberry Pi you have the option to provide wireless indoor conditions and outdoor weather data using [433 MHz Acu Rite 06002M wireless temperature and humidity sensors](https://www.amazon.com/gp/product/B00T0K8NXC/) paired with a [433 MHz receiver module](https://www.amazon.com/gp/product/B00HEDRHG6/).
101101

102-
You can use one wireless sensor in lieu of a wired DHT22/AM2302 for indoor temperature and humidity, and you can use one or two wireless sensors for outdoor temperature and humidity. (When using multiple sensors, each must be set to a different channel — A, B, or C.)
102+
You can use one wireless sensor in lieu of a wired DHT22/AM2302 for indoor temperature and humidity, and you can use one, two, or three wireless sensors for outdoor temperature and humidity. (When using multiple sensors, each must be set to a different channel — A, B, or C. No more than two wireless sensors can be used for outdoor readings if one is used for indoor readings.)
103103

104-
An outdoor two-sensor set-up is useful when it’s difficult to find a single location for a sensor that isn’t overly warmed by the sun for at least part of the day. When you have two sensors, and signal is available from both, values from the cooler of the two sensors will be displayed.
104+
An outdoor multiple-sensor set-up is useful when it’s difficult to find a single location for a sensor that isn’t overly warmed by sunlight for at least part of the day. When you have multiple sensors values from the coolest-reading sensor will be displayed.
105105

106-
With either one or two outdoor sensors the temperature displayed (in the largest text) will be pinned to be within ±2°C (±4°F) of the temperature supplied by the online weather service (a yellow tint of the temperature value indicates pinning is in effect). The “Feels like” temperature always comes from the weather service, not from your wireless sensors.
106+
With one or more outdoor sensors the temperature displayed (in the largest text) will be pinned to be within ±2°C (±4°F) of the temperature supplied by the online weather service (a yellow tint of the temperature value indicates pinning is in effect). The “Feels like” temperature always comes from the weather service, not from your wireless sensors.
107107

108108
In small, gray print you can see the individual temperature values for each wireless sensor and from the forecast, regardless of what is displayed in large format. If any of your wireless sensors are running low on battery power, a red indicator will appear in the upper right corner of the display.
109109

@@ -310,7 +310,7 @@ To build and run this project you can use the following commands:
310310
To build the server along with the web client, use `npm run build`, possibly followed by `‑‑` and other options listed below:
311311

312312
|   |   |
313-
|------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
313+
| ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
314314
| `‑‑acu` | Install support for wireless temperature/humidity sensors using a 433 MHz receiver module. |
315315
| `‑‑acu‑` | Clears saved `‑‑acu` setting when not using interactive mode. |
316316
| `‑‑admin` | Enables the user actions “Update”, “Shut down”, “Reboot”, and “Quit” in the Settings dialog. |

package-lock.json

Lines changed: 63 additions & 69 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aw-clock",
3-
"version": "3.5.2",
3+
"version": "3.5.3",
44
"license": "MIT",
55
"author": "Kerry Shetline <kerry@shetline.com>",
66
"scripts": {
@@ -18,9 +18,9 @@
1818
},
1919
"private": true,
2020
"dependencies": {
21-
"@tubular/astronomy": "^3.5.0",
21+
"@tubular/astronomy": "^3.5.1",
2222
"@tubular/math": "^3.3.1",
23-
"@tubular/time": "^3.8.9",
23+
"@tubular/time": "^3.8.14",
2424
"@tubular/util": "^4.13.1",
2525
"compare-versions": "^4.1.3",
2626
"jquery": "^3.6.0",

0 commit comments

Comments
 (0)