FOR TIPS, gUIDES & TUTORIALS

subscribe to our Youtube

GO TO YOUTUBE

14455 questions

17168 answers

28195 comments

0 members

We are migrating to our new platform at https://community.teltonika.lt. Moving forward, you can continue discussions on this new platform. This current platform will be temporarily maintained for reference purposes.
+1 vote
22,916 views 4 comments
by anonymous
Is there a way to monitor incoming Supply Voltage and Current consumption on 955 or other Routers. This function is required for when the 955 is located in remote locations that are using Battery and Solar Power.

3 Answers

0 votes
by anonymous
It is possible but you need a contoler that you need to hook up to the tectonics and it will send data over Modbus or MQTT.
See diagram:
https://teltonika-networks.com/pl/industries/use-cases/remote-monitoring-of-solar-power-plants/
by anonymous
Thanks Dako, yes of course with external device it is possible and I am aware of this option.my question is about "self monitoring" to avoid external hardware. Maybe Teltonika can add this as a feature request.
by anonymous
It's doable, but you'll need a controller that you connect to the tectonics and that sends data through MQTT or Modbus.
0 votes
by anonymous

Hello,

Thanks for contacting TELTONIKA | Crowd-support forum.

Please find below RUT955 power consumption values in different states of operation:

https://wiki.teltonika-networks.com/view/RUT955_Power_Consumption

The router has a 4 pin power socket and can be powered by a 9-30 VDC power supply unit (PSU).

The device is designed to accept input voltage of up to 30 VDC peaks, high voltage power supplies can harm the device. If you want to use high voltage power supplies it is recommended to also use additional safety equipment to suppress voltage peaks from the power supply.

More information can be found here:

https://wiki.teltonika-networks.com/view/RUT955_Powering_Options

If you’re using Quectel, you can read ADC Value by typing the following command:

gsmctl -A 'AT+QADC=0'

More information can be found here:

https://community.teltonika-networks.com/16147/rut955-power-supply-voltage

https://wiki.teltonika-networks.com/wikibase/images/2/2e/Quectel_EC25EC21_AT_Commands_Manual_V1.2.pdf#page=207

If you’re using MEIG, you can read ADC Value by typing the following command:

gsmctl -A 'AT+ADCREAD=1'

More information can be found here:

https://fccid.io/2APJ4-SLM750V/User-Manual/Users-Manual-revised-4514377.pdf#page=50

Best regards,

by anonymous
Hello,

is it possible to forward the voltage cyclic to an local mqtt broker?

Thank you!
by anonymous

Hello,

@unox It would be possible to achieve this by utilizing a custom Modbus register. Then simply set up Data-to-Server as Data Source → Modbus, Protocol → MQTT and specify what you'd like to send.

For the custom register, the example provided in the article could be modified to the following (for Quectel modems):

#!/bin/ash

while true
do
gsmctl -A 'AT+QADC=0' > /tmp/regfile  #where data will be stored
sleep 5
done

Let me know if any more information is needed!

Best regards,
DaumantasG

0 votes
by anonymous

Hello,

is it possible to forward the voltage cyclic to an local mqtt broker?

Thank you!