Hello!! Good to see your comments. I want to explain you something.
1- for a bus company they are using:
a) Infrared sensor for counting passengers who get in and get out of the bus.
b) A device to capture the sensors signals.
so they are asking me to integrate with their solution a device to track via gps the bus and send to a cloud the counts of the passengers for making a web page., so my question is:
*1.- how they can send me the information through UART or how they can?
*2.- which device should we buy the most professional and reliable to track the bus via gps and for counting and send the information through cellular , but we need the more reliable I have seen that particle devices sometimes loss signal and stop sending information.
I would appreciate your valuable capacity to help us.
Good day, as per the sensor specification the output is an analog voltage that you can directly connect to the analog input of the teltonika device.
AIN connection from the device:
Please make a test/POC to check if it is compatible with your solution, if you need additional help please contact your sales manager or create an HD ticket.
if arduino or SMT dev board is sending the data of the three sensors through UART, is it possible to catch that information with Teltonika? I mean
SMT board or arduino will send
“………
String message = String(“{“Sensor1”:”) + sensor1Value +
“,“Sensor2”:” + sensor2Value +
“,“Sensor3”:” + sensor3Value +
“,“Sensor4”:” + sensor4Value +
“,“Sensor5”:” + sensor5Value + “}”;
// Send the message
Serial.println(message);
delay(1000); // Send data every second
} “
a) is it possible? how to catch that information?
b) and can be send the tracking GPS to a map?
Yes, this is possible but first make a POC, connect the serial cable of FMX125 or FMX650 to the sensor, and make sure that you have configured the correct baudrate , parity, mode etc.
For your testing test in the TCP/UDP Binary mode, the parsing should be done according to the protocol of your sensor.
Sometimes, the data that you receive is in HEX, and then you convert that to ASCII to check whether the data that you received is correct. To have additional support for your POC, kindly contact your sales manager or create an HD ticket.
1.- If arduino UNO is sending me information through UART connected to a TTL to RS232 module , the arduino is sending “HELLO THE NUMBER OF PASSENGERS IS: 45” , and it is sending every second the update of the counting, so:
a) Is it possible from a FMC125 Teltonika admit the serial information of the ARDUINO in 5V?
b) If yes, is it possible to extract the information (only the number 45 etc) of the Teltonik Platform to send it to a WebPAGE (API or MQTT), for making my own webpage with dashboard?
c)Is it possible to send the serial data to my own webpage and the GPS data to show it in a map?