HI,
I’m trying to log voltage (RB433UAH) by this command
:log info [/system health get voltage];
Problem is that I’m getting in system log result “280” but It should be 28,0.
How to fix this problem?
best regards
Piotr Polok
HI,
I’m trying to log voltage (RB433UAH) by this command
:log info [/system health get voltage];
Problem is that I’m getting in system log result “280” but It should be 28,0.
How to fix this problem?
best regards
Piotr Polok
:local v [/system health get voltage]
:local v1 ($v/10)
:local v2 ($v-($v1*10))
:log info "Voltage: $v1,$v2 V"
HI,
Thank you for the answer.
br.
TopLek