Вы находитесь на странице: 1из 4

June 2017

Antalis Wifi
Tracker Device
Share under NDA
Device Description

Messages Transmitted by Device (2 Uplinks)

Message type #1, Data:


- Battery
- Temperature
- Temperature Alert
- Movement Status

Message type #2, Data:


- Wi-Fi #1 MAC
- Wi-Fi #2 MAC

Device Behavior
When device first starts, it checks battery level,
If enough battery level,
Device transmits a message with Downlink,
For being able to change device configuration.

Device Default Configuration


- Uplink Messages Transmission
· No movement: each 1 hour.
· Movement: each 15 min.
- Downlink Message Transmission
· 4 times per day
- Temperature Alert
· Min: - 40 ºC
· Max: + 87.5 ºC
- Temperature Alert
· When raised, sent each 1 hour.
Messages format

Downlink configuration format


Byte Description Notes
1, 2 Transmission period when no If value is 0, default value will be
movement, in minutes. configured instead.
1st byte is most significant one, 2nd
byte is less significant one.
Allowed values from 1 to 65535.
3, 4 Transmission period when movement,
in minutes.
1st byte is most significant one, 2nd
byte is less significant one.
Allowed values from 1 to 65535.
5 Number of downlinks per day. If number if higher than 4, 4 will be
selected.
If value is 0, default value will be
configured instead.
6 Temperature alert minimum threshold. Temperature computation:
7 Temperature alert maximum Tempfloat = - 40.0 + (tempbyte / 2.0)
threshold. i.e. 0 is - 40 ºC, 255 is 87.5 ºC.
If temperature alert maximum threshold
is 0, this feature is not activated and
temperature is measured only when
position is going to be sent. Otherwise
temperature is checked each second.
8 Transmission period when
temperature alert, in minutes.

Downlink example (test configuration)


0001000104000000

Meaning:

Byte Value Description


1, 2 0001 Transmission period when no movement: each 1 minute.
3, 4 0001 Transmission period when movement: each 1 minute.
5 04 Number of downlinks per day: 4.
6 00
7 00 Temperature alert not activated.
8 00
Uplink format: Message type #1
Byte Description Notes
1 XOR with the rest of the message.* For message type selection.
2 Battery level. Equation:
Battery voltage = (byte2r / 255) * 3.4
3 Temperature. Equation:
Tempfloat = - 40.0 + (byte3 / 2.0)
4 Temperature alert. 1 = Temperature alert.
0 = No temperature alert.
5 Movement status. 1 = Movement.
0 = No movement.
6 - 12 No info, value 0, but transmitted.

* Byte 1 Computation

uplinkdata[0] = 0x00:
for (index = 0; index < 12; ++index)
{
uplinkdata[0] ^= uplinkdata[index];
}

Uplink format: Message type #2


Byte Description Notes
1-6 Wi-Fi #1 MAC 1st Most powerful.
7 - 12 Wi-Fi #2 MAC 2nd Most powerful.

Вам также может понравиться