James Obuhuma
James Obuhuma

Reputation: 407

Acknowledging Teltonika GPS Device after receiving IMEI using php

Hi please any one can explain how to send acknowledgment from server to Teltonika GPS device? The GPS device is sending IMEI (International Mobile Equipment Identity ) number and once I get IMEI number the packet is waiting for acknowledgment.

Upvotes: 1

Views: 1530

Answers (1)

Kannan
Kannan

Reputation: 41

You have to send a data like

01 // means send data to server
00 // stop sending data to server

pack("H*", "01");

Upvotes: 1

Related Questions