improve feel
This commit is contained in:
parent
a7325cb301
commit
f7831a18f0
@ -114,9 +114,16 @@ def dash_bb():
|
||||
def dash_loc():
|
||||
return get_loc_data()
|
||||
#return render_template('index.html', data = str(get_data()))
|
||||
@app.route('/<string:page_name>/')
|
||||
def render_static(page_name):
|
||||
return render_template('%s.html' % page_name, title = dashboard_title, logo = logo, description = description)
|
||||
|
||||
##@app.route('/<string:page_name>/')
|
||||
##def render_static(page_name):
|
||||
## return render_template('%s.html' % page_name, title = dashboard_title, logo = logo, description = description)
|
||||
@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)
|
||||
@app.route('/about')
|
||||
def about():
|
||||
#return get_data()
|
||||
return render_template('about.html', title = dashboard_title, logo = logo, contact_name, contact_call = contact_call, contact_email = contact_email, contact_website = contact_website)
|
||||
if __name__ == '__main__':
|
||||
app.run(debug = True, port=dash_port, host=dash_host)
|
||||
|
@ -33,3 +33,15 @@ dash_host = '127.0.0.1'
|
||||
description = '''
|
||||
Welcome to the ''' + dashboard_title + '''.
|
||||
'''
|
||||
# The following will generate a help page for your users.
|
||||
|
||||
# Data call type
|
||||
data_call_type = 'Private Call'
|
||||
# DMR ID of GPS/Data application
|
||||
data_call_id = '9099'
|
||||
|
||||
# Gateway contact info displayed on about page.
|
||||
contact_name = 'your name'
|
||||
contact_call = 'N0CALL'
|
||||
contact_email = 'email@example.org'
|
||||
contact_website = 'https://hbl.ink'
|
||||
|
@ -16,5 +16,28 @@ p {
|
||||
<body>
|
||||
{% include 'header.html' %}
|
||||
{{description}}
|
||||
<p> </p>
|
||||
<p>Contact information for this gateway.</p>
|
||||
<table style="margin-left: auto; margin-right: auto;" border="black">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><strong>Name</strong></td>
|
||||
<td>{{contact_name}} </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Callsign</strong></td>
|
||||
<td> {{contact_call}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>E-Mail</strong></td>
|
||||
<td> {{contact_email}}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Website</strong></td>
|
||||
<td> {{contact_website}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p> </p>
|
||||
{% include 'footer.html' %}
|
||||
|
||||
|
@ -1,24 +1,12 @@
|
||||
<p><img style="display: block; margin-left: auto; margin-right: auto;" src="{{logo}}" alt="Logo" width="300" height="144" /></p>
|
||||
<h1 style="text-align: center;">{{title}}</h1>
|
||||
<hr />
|
||||
<table style="margin-left: auto; margin-right: auto;" border="black" cellspacing="3" cellpadding="3">
|
||||
<table style="width: 500px; margin-left: auto; margin-right: auto;" border="black" cellspacing="3" cellpadding="3">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<button onclick="window.location.href='/';">
|
||||
Dashboard
|
||||
</button>
|
||||
</td>
|
||||
<td>
|
||||
<button onclick="window.location.href='help';">
|
||||
Help
|
||||
</button>
|
||||
</td>
|
||||
<td>
|
||||
<button onclick="window.location.href='about';">
|
||||
About Dashboard
|
||||
</button>
|
||||
</td>
|
||||
<td style="text-align: center;"><button onclick="window.location.href='/';"> D-APRS Dashboard </button></td>
|
||||
<td style="text-align: center;"><button onclick="window.location.href='/help';"> D-APRS Help </button></td>
|
||||
<td style="text-align: center;"><button onclick="window.location.href='/about';"> Gateway Contact </button></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -15,5 +15,67 @@ p {
|
||||
</head>
|
||||
<body>
|
||||
{% include 'header.html' %}
|
||||
Help info here.
|
||||
<p>{{description}}</p>
|
||||
<p>Configure your radio to send GPS positions with the following settings:</p>
|
||||
<table style="margin-left: auto; margin-right: auto;" border="black">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: center;"><strong>Data Call Type</strong></td>
|
||||
<td style="text-align: center;"><strong>DMR ID</strong></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="text-align: center;"> {{data_call_type}}</td>
|
||||
<td style="text-align: center;"> {{data_call_id}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p> </p>
|
||||
<p>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 <a href="https://radioid.net/">RadioID.net</a>. 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."</p>
|
||||
<p>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 <a href="https://radioid.net/">RadioID.net</a> database for DMR ID 1234567. The result will be an APRS location packet with APRS SSID {{aprs_ssid}}. </p>
|
||||
<p>You can change the default APRS settings for your radio via SMS.</p>
|
||||
<h2 style="text-align: center;">Commands</h2>
|
||||
<table style="margin-left: auto; margin-right: auto;" border="black">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="text-align: center;">
|
||||
<h4><strong>Command</strong></h4>
|
||||
</td>
|
||||
<td style="text-align: center;">
|
||||
<h4><strong>Description</strong></h4>
|
||||
</td>
|
||||
<td style="text-align: center;">
|
||||
<h4><strong>Example</strong></h4>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>@COM</strong></td>
|
||||
<td>Change the comment of the APRS.</td>
|
||||
<td><em><code>@COM This is a test comment.</code></em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>@ICON</strong></td>
|
||||
<td>Change the icon of the APRS position. *See <a href="http://aprs.net/vm/DOS/SYMBOLS.HTM" rel="nofollow">http://aprs.net/vm/DOS/SYMBOLS.HTM</a> for icon list.</td>
|
||||
<td><em><code>@icon /p</code></em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>@SSID</strong></td>
|
||||
<td>Change SSID of your callsign.</td>
|
||||
<td><em><code>@SSID 7</code></em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>@MH</strong></td>
|
||||
<td>Set you location by maidenhead grid square. Designed for radios with no GPS or that are not compatable yet.</td>
|
||||
<td><em><code>@MH DN97uk</code></em></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>@BB</strong></td>
|
||||
<td>Post a bulliten to the web dashboard.</td>
|
||||
<td><em><code>@BB This is a test bulletin.</code></em></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p> </p>
|
||||
<p>Send an SMS to <strong>{{data_call_id}}</strong> as a <strong>{{data_call_type}}</strong> with the desired command followed by the value. For example, to change your icon to a dog, the command would be <code>@ICON /p</code> (see the icon table for values). Changing your SSID is as simple as <code>@SSID 7</code>, and <code>@COM Testing 123</code> will change the comment.</p>
|
||||
<p>Sending <code>@BB Test</code> will result in a post to the bulletin board with the messaage of "Test".</p>
|
||||
<p><strong>To remove any of the stored values, just send the appropriate command without any input.</strong> <code>@COM</code> will remove the stored comment, <code>@ICON</code> will remove the stored icon, and <code>@COM</code> will remove the strored comment. Any position now reports sent will have the default settings.</p>
|
||||
{% include 'footer.html' %}
|
||||
|
@ -27,5 +27,5 @@ p {
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
{% include 'header.html' %}
|
||||
{% include 'footer.html' %}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user