Translations:SVG-Dashboards/28/en

Материал из Wiren Board
Версия от 12:53, 4 августа 2023; A.Degtyarev (обсуждение | вклад) (Новая страница: «For example, output the value <code>АВАРИЯ</code> if the value in the MQTT topic multiplied by 0.1 is greater than 20 and <code>НОРМА</code> otherwise: <syntaxhighlight lang="javascript"> (val*0.1>20) ? 'ALARM' : 'NORMAL' </syntaxhighlight>»)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)

For example, output the value АВАРИЯ if the value in the MQTT topic multiplied by 0.1 is greater than 20 and НОРМА otherwise:

 
(val*0.1>20) ? 'ALARM' : 'NORMAL'