How to configure gps ISTARTEK VT600?

jonathan5 years ago

Hi. I buy the GPS istartek vt600 but I have problems in the traccar platform. I managed to link the gps to the platform using the 5009 protocol. I have the location but it does not detect ACC and you do not receive notifications from the platform. Has anyone used the GPS vt600 that can help me?

Rodrigo5 years ago

Hi, many months ago i asked the same, but no one answered.
i have 2 vt600. and the ignition wire is shown like adc1 and obviously will not changes the ignition state.
you have to program a calculated attrib to do it.
thats my code:

attrib: ignition
adc1 < 1 ? false : true
boolean

i hope this will help to you..... similar to "in" wires to sense doors or other thing....

Greetings from chile.

jonathan5 years ago

hello Rodrigo the council worked for me. Can you tell me the code to detect door opening please.

Rodrigo5 years ago

Hello Jonathan,
Of corse, here is it

Attribute: alarm
In3 < 1 ? false : true
Boolean

Assuming that you are using in3 to sense it
And here I do the same to use in1 to trigger an alarm with sos button

attrib: alarm
In1 < 1 ? false : true
Boolean

Good night and I hope this will be useful for you