From aca47fa6ad0d5e2b60bcf46ffe9b8ee5744bc268 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 3 Aug 2021 10:16:32 +0200 Subject: [PATCH 1/2] Add note that only TTNv2 is supported (#18703) --- source/_integrations/thethingsnetwork.markdown | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/_integrations/thethingsnetwork.markdown b/source/_integrations/thethingsnetwork.markdown index f88e84b59b3..c500aabd4ec 100644 --- a/source/_integrations/thethingsnetwork.markdown +++ b/source/_integrations/thethingsnetwork.markdown @@ -13,6 +13,10 @@ ha_platforms: - sensor --- +
+ This integration only supports TTNv2. +
+ The `thethingsnetwork` integration allows one to interact with the [The Things Network](https://www.thethingsnetwork.org). This community-driven and open network supports [LoRaWAN](https://www.lora-alliance.org/) for long range (~5 to 15 km) communication with a low bandwidth (51 bytes/message). [Gateways](https://www.thethingsnetwork.org/docs/gateways/) transfers the received data from the sensors to the The Things Network. The Things network support various integrations to make the data available: From 4ab38ab81c7ca5f7332d5776fa676382c6642517 Mon Sep 17 00:00:00 2001 From: Pedro Lamas Date: Tue, 3 Aug 2021 09:41:09 +0100 Subject: [PATCH 2/2] Adds "limits" configuration to Lovelace sensor docs (#18694) --- source/_lovelace/sensor.markdown | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/source/_lovelace/sensor.markdown b/source/_lovelace/sensor.markdown index 5708023196e..297ee3925e6 100644 --- a/source/_lovelace/sensor.markdown +++ b/source/_lovelace/sensor.markdown @@ -48,6 +48,21 @@ hours_to_show: description: Hours to show in graph. type: integer default: 24 +limits: + required: false + description: Limits of the graph Y-axis. + type: map + keys: + min: + description: Minimum value of the graph Y-axis. + type: float + required: false + default: "`0` if the entity `unit_of_measurement` is `%`, otherwise minimum value of sample" + max: + description: Maximum value of the graph Y-axis. + type: float + required: false + default: "`100` if the entity `unit_of_measurement` is `%`, otherwise maximum value of sample" theme: required: false description: Override the used theme for this card with any loaded theme. For more information about themes, see the [frontend documentation](/integrations/frontend/).