From 21799178b25cd5dc68b6d93208331b471eb5ac14 Mon Sep 17 00:00:00 2001 From: KF7EEL Date: Sat, 2 Jan 2021 18:11:28 -0800 Subject: [PATCH] fix grammar --- scripts/dashboard/dashboard.py | 2 +- scripts/dashboard/dashboard_settings-SAMPLE.py | 2 ++ scripts/dashboard/templates/help.html | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/dashboard/dashboard.py b/scripts/dashboard/dashboard.py index fdd0fe8..dca65d8 100644 --- a/scripts/dashboard/dashboard.py +++ b/scripts/dashboard/dashboard.py @@ -120,7 +120,7 @@ def dash_loc(): @app.route('/help/') def help(): #return get_data() - return render_template('help.html', title = dashboard_title, logo = logo, description = description, data_call_type = data_call_type, data_call_id = data_call_id) + return render_template('help.html', title = dashboard_title, logo = logo, description = description, data_call_type = data_call_type, data_call_id = data_call_id, aprs_ssid = aprs_ssid) @app.route('/about/') def about(): #return get_data() diff --git a/scripts/dashboard/dashboard_settings-SAMPLE.py b/scripts/dashboard/dashboard_settings-SAMPLE.py index ee10bb8..1eb2b6b 100644 --- a/scripts/dashboard/dashboard_settings-SAMPLE.py +++ b/scripts/dashboard/dashboard_settings-SAMPLE.py @@ -39,6 +39,8 @@ Welcome to the ''' + dashboard_title + '''. data_call_type = 'Private Call' # DMR ID of GPS/Data application data_call_id = '9099' +# Default APRS ssid +aprs_ssid = '15' # Gateway contact info displayed on about page. contact_name = 'your name' diff --git a/scripts/dashboard/templates/help.html b/scripts/dashboard/templates/help.html index 1c6f041..723ea2d 100644 --- a/scripts/dashboard/templates/help.html +++ b/scripts/dashboard/templates/help.html @@ -18,7 +18,7 @@

 

-

When a position is received by this gateway, it will extract the coordinates and create an APRS position packet. The this gateway will find your callsign based your radio's DMR ID. It is essential to have your information up to date with RadioID.net. A predefined APRS SSID of {{aprs_ssid}} is appended your callsign. The APRS location packet is then uploaded to APRS-IS. No setup or account creation is required beforehand. This is pretty much "plug and play."

+

When a position is received by this gateway, it will extract the coordinates and create an APRS position packet. The this gateway will find your callsign based your radio's DMR ID. It is essential to have your information up to date with RadioID.net. A predefined APRS SSID of {{aprs_ssid}} is appended your callsign. The APRS location packet is then uploaded to APRS-IS. No setup or account creation is required beforehand. This is pretty much "plug and play."

For example, N0CALL has a DMR ID of 1234567. N0CALL's radio sends a position to this gateway with the settings above. This gateway will query the RadioID.net database for DMR ID 1234567. The result will be an APRS location packet with APRS SSID {{aprs_ssid}}.

You can change the default APRS settings for your radio via SMS.

Commands

@@ -65,5 +65,5 @@

 

Send an SMS to {{data_call_id}} as a {{data_call_type}} with the desired command followed by the value. For example, to change your icon to a dog, the command would be @ICON /p (see the icon table for values). Changing your SSID is as simple as @SSID 7, and @COM Testing 123 will change the comment.

Sending @BB Test will result in a post to the bulletin board with the messaage of "Test".

-

To remove any of the stored values, just send the appropriate command without any input. @COM will remove the stored comment, @ICON will remove the stored icon, and @COM will remove the strored comment. Any position now reports sent will have the default settings.

+

To remove any of the stored values, just send the appropriate command without any input. @COM will remove the stored comment, @ICON will remove the stored icon, and @ICON will remove the strored icon. Any position reports sent will have the default settings.

{% include 'footer.html' %}