an-erd / bleMqttProxy

MIT License
1 stars 0 forks source link

CSV download with strange and not updated time stamps #45

Open an-erd opened 3 years ago

an-erd commented 3 years ago

CSV Download reads:

Bx0708
Seq.nr.;EPOCH Time;Time-Date;Temperature;Humidity
 25871;-2032843611;01.08.05 18:13:09; 21,2;48,9
 25872;-2032843311;01.08.05 18:18:09; 21,2;48,8
 25873;-2032843011;01.08.05 18:23:09; 21,3;48,7
 25874;-2032842711;01.08.05 18:28:09; 21,3;48,7
 25875;-2032842411;01.08.05 18:33:09; 21,3;48,7
 25876;-2032842111;01.08.05 18:38:09; 21,3;48,7
 25877;-2032841811;01.08.05 18:43:09; 21,2;48,6
 25878;-2032841511;01.08.05 18:48:09; 21,2;48,6
 25879;-2032841211;01.08.05 18:53:09; 21,3;48,6
 25880;-2032840911;01.08.05 18:58:09; 21,2;48,7
 25881;-2032840611;01.08.05 19:03:09; 21,3;48,6
 25882;-2032840311;01.08.05 19:08:09; 21,3;48,6
 25883;-2032840011;01.08.05 19:13:09; 21,3;48,5
 25884;-2032839711;01.08.05 19:18:09; 21,3;48,5
 25885;-2032839411;01.08.05 19:23:09; 21,3;48,5
 25886;-2032839111;01.08.05 19:28:09; 21,3;48,5
 25887;-2032838811;01.08.05 19:33:09; 21,3;48,5
 25888;-2032838511;01.08.05 19:38:09; 21,3;48,5
 25889;-2032838211;01.08.05 19:43:09; 21,3;48,4
 25890;-2032837911;01.08.05 19:48:09; 21,3;48,4
 25891;-2032837611;01.08.05 19:53:09; 21,3;48,4
 25892;-2032837311;01.08.05 19:58:09; 21,3;48,4
...
 27093;-2032477011;06.08.05 00:03:09; 21,0;37,4
 27094;-2032476711;06.08.05 00:08:09; 21,0;37,4
 27095;-2032476411;06.08.05 00:13:09; 21,0;37,4
 27096;-2032476111;06.08.05 00:18:09; 21,0;37,5
 27097;-2032475811;06.08.05 00:23:09; 21,0;37,5
 27098;-2032475511;06.08.05 00:28:09; 21,1;37,5
 27099;-2032475211;06.08.05 00:33:09; 21,0;37,5
 27100;-2032474911;06.08.05 00:38:09; 21,0;37,5
 27101;-2032474611;06.08.05 00:43:09; 21,0;37,5
 27102;-2032474311;06.08.05 00:48:09; 21,0;37,5
 27103;-2032474011;06.08.05 00:53:09; 21,0;37,5
 27104;-2032473711;06.08.05 00:58:09; 21,0;37,5
 27105;-2032473411;06.08.05 01:03:09; 21,0;37,5
 27106;-2032473111;06.08.05 01:08:09; 21,0;37,5
 27107;-2032472811;06.08.05 01:13:09; 21,0;37,5
 27108;-2032472511;06.08.05 01:18:09; 21,0;37,6
 27109;-2032472211;06.08.05 01:23:09; 21,0;37,7
 27110;1613063644;11.02.21 18:14:04; 21,0;37,7
 27111;1613063944;11.02.21 18:19:04; 20,9;37,9
 27112;1613064244;11.02.21 18:24:04; 20,9;37,9
 27113;1613064544;11.02.21 18:29:04; 20,9;38,0
 27114;1613064844;11.02.21 18:34:04; 20,9;37,9
 27115;1613065144;11.02.21 18:39:04; 20,8;38,0
 27116;1613065444;11.02.21 18:44:04; 20,8;37,9
 27117;1613065744;11.02.21 18:49:04; 20,8;38,0
 27118;1613066044;11.02.21 18:54:04; 20,8;37,9
 27119;1613066344;11.02.21 18:59:04; 20,8;37,9
 27120;1613066644;11.02.21 19:04:04; 20,8;37,9

Not clear: bleMqttProxy or ble_beacon. Note: maybe integer overflow

an-erd commented 3 years ago

Clean token:

Bx0706
Seq.nr.;EPOCH Time;Time-Date;Temperature;Humidity
     0;         1;01.01.70 00:00:01; 21,7;52,5
     1;       301;01.01.70 00:05:01; 22,6;38,7

Update w/time:

Bx0706
Seq.nr.;EPOCH Time;Time-Date;Temperature;Humidity
     0;         1;01.01.70 00:00:01; 21,7;52,5
     1;       301;01.01.70 00:05:01; 22,6;38,7

Problem occurs somewhere before seq num 27109. 27109 * 5 min = ~94 d, i.e. EPOCH 8146800

Long int range: 2147483647 (?) int32_t -2,147,483,648 .. 2,147,483,647

So EPOCH time above (-2032472211) to int range (+/-2147483647) gives -115.011.436, no clue what that means.