Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorporate improvements from @soshial/@tripplet + myself #151

Closed
wants to merge 28 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a505b93
elaborate differences between protocols
soshial Jun 6, 2021
36dba09
add support of traccar Ignition ON/OFF
soshial Jun 20, 2021
c43738d
Merge branch 'stanleyhuangyc:master' into traccar_integration
soshial Jun 28, 2021
f41758a
Merge pull request #1 from soshial/patch-1
soshial Jun 28, 2021
95fdefe
fix sending incorrect temperature
soshial Jun 30, 2021
ad300ec
payload checksum must always be 2 symbols
soshial Jun 30, 2021
8febac3
include signal strength in the payload
soshial Jun 30, 2021
ea1b0e6
show WiFi status in Freematics Builder
soshial Jun 30, 2021
f5c052c
fix storage dumping; send latest location together with ping
soshial Jul 11, 2021
ff6ca8a
send EVENT_LOW_BATTERY if battery almost discharged
soshial Jul 18, 2021
4794b39
send local timestamp back to server
soshial Sep 10, 2021
a216440
Merge branch 'stanleyhuangyc:master' into traccar_integration
soshial Sep 10, 2021
e6ca381
improve sending time; send cell tower info
soshial Oct 16, 2021
3fb43e3
stop sending RSSI for events
soshial Oct 16, 2021
b285e68
Merge remote-tracking branch 'soshial/traccar_integration'
ndoo Jan 12, 2022
851c882
FreematicsPlus: Fix buzzer frequency being hardcoded at 2000Hz
ndoo Jan 12, 2022
58360d7
FreematicsPlus: Add buzzer volume control
ndoo Jan 12, 2022
7145f7b
Update to fix door slam causing false wakeups
wally2511 Apr 27, 2021
478c8d0
Improve OBD polling
tripplet Jul 3, 2021
6c0df5d
telelogger v5: Abstract voltage update code
ndoo Jan 12, 2022
1e4626b
telelogger v5: Fix "Instable connection" spelling --> "Unstable conne…
ndoo Jan 12, 2022
5c52d52
telelogger v5: Report sync time for UDP transmit, to prevent "Unstabl…
ndoo Jan 12, 2022
3f751f5
telelogger v5: Increase buffer length to accommodate new PIDs
ndoo Jan 12, 2022
51c2548
telelogger v5: Add customizable startup beep sequence
ndoo Jan 12, 2022
3ee98ad
FreematicsPlus: Wait 2 seconds for co-processor GNSS, to match extern…
ndoo Jan 12, 2022
b2fcd7a
telelogger v5: Don't print "GNSS OFF" when GNSS kept on with `GNSS_AL…
ndoo Jan 12, 2022
8bfa33b
telelogger v5: Use new battery voltage routine during ping, works wit…
ndoo Jan 12, 2022
4e56b8d
telelogger v5: Ignore voltage thresholds below USB voltage to allow t…
ndoo Jan 12, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
include signal strength in the payload
soshial committed Jul 2, 2021
commit 8febac35aeb0000effbccfe1ad60c14d6837ccba
7 changes: 7 additions & 0 deletions firmware_v5/telelogger/telelogger.ino
Original file line number Diff line number Diff line change
@@ -793,6 +793,13 @@ void process()
processExtInputs(buffer);
#endif

#if NET_DEVICE >= SIM800
rssi = teleClient.net.getSignal();
if (rssi) {
buffer->add(PID_CSQ, rssi);
}
#endif

#if ENABLE_MEMS
processMEMS(buffer);
#endif