ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
Sigfox Settings
2
3
Please input the following data and go to the next page :
Generated URL :
https://backend.sigfox.com/api/devices/3E829A/messages?limit=100
4
5
Device ID :3E829A
6
Backend API Username:5a32085b500574082f2be428
7
Backend API Password:
83f8ffcddb5621efffbb66a67a7945a1
8
Number of Messages to show (max 100):100
9
Time Difference (from UTC)11
10
11
Post Processing Guide:
12
Since a payload length of a Sigfox message is only up to 12 bytes. The measured values (i.e., temperature, Acceleration, Pressure, and Light) in the DEMO application are scaled and cast into a two-bytes integer.

To retrieve the original values, the received values from the Sigfox backend need to be rescaled as follows:
Temperature is divided by 100.
Pressure is multiplied by 3.
Output voltage of the photovoltaic is divided by 1000.
Acceleration in each dimension is divided by 250.
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100