Backup of all files for my Tasmota-GPS-Project. This is a playground project, but it would be possible to finish this driver to merge it.
Driver is tested on a NEO-6m and a Beitian-220. Series 7 should work too. This adds only about 6kb to the program size, because the efficient UBX-protocol is used. These modules are quite cheap, starting at about 3.50€ for the NEO-6m.
- get position and time data
- sets system time automatically and Settings.latitude and Settings.longitude via command
- can log postion data with timestamp to flash with a small memory footprint of only 12 Bytes per record
- constructs a GPX-file for download of this data
- Web-UI
- simplified NTP-server
- command interface
The serial pins are hardcoded (default 4,5 -> D2,D1), no further installation steps needed. To get more debug information compile it with option "DEBUG_TASMOTA_SENSOR".
Commands:
-
sensor92 0
write to all available sectors, then restart and overwrite the older ones -
sensor92 1
write to all available sectors, then restart and overwrite the older ones -
sensor92 2
filter out horizontal drift noise -
sensor92 3
turn off noise filter -
sensor92 4
start recording, new data will be appended -
sensor92 5
start new recording, old data will lost -
sensor92 6
stop recording, download link will be visible in Web-UI -
sensor92 7
send mqtt on new postion + TELE -> consider to set TELE to a very high value -
sensor92 8
only TELE message -
sensor92 9
start NTP-server -
sensor92 10
deactivate NTP-server -
sensor92 11
force update of Tasmota-system-UTC with every new GPS-time-message -
sensor92 12
do not update of Tasmota-system-UTC with every new GPS-time-message -
sensor92 13
set latitude and longitude in settings
rule1 on tele-GPS#lat do DisplayText [s1p21c1l01f1]LAT: %value% endon on tele-GPS#lon do DisplayText [s1p21c1l2]LON: %value% endon on switch1#state==3 do sensor92 4 endon on switch1#state==2 do sensor92 6 endon
rule2 on tele-GPS#int>9 do DisplayText [f0c9l4]I%value% endon on tele-GPS#int<10 do DisplayText [f0c9l4]I0%value% endon on tele-GPS#fil==1 do DisplayText [f0c18l4]F endon on tele-GPS#fil==0 do DisplayText [f0c18l4]N endon
rule3 on tele-FLOG#sec do DisplayText [f0c1l4]SAV:%value% endon on tele-FLOG#rec==1 do DisplayText [f0c1l4]REC: endon on tele-FLOG#mode do DisplayText [f0c14l4]M%value% endon