From 2affa319d45e57e4d4ca7d09469c02b769e6ffdb Mon Sep 17 00:00:00 2001 From: KF7EEL Date: Sun, 31 Jan 2021 12:33:57 -0800 Subject: [PATCH 1/3] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6f1a2db..fd48e24 100755 --- a/README.md +++ b/README.md @@ -90,6 +90,8 @@ The comment, SSID, and icon can be set for each individual user/DMR ID the appli |**@MH**|Set you location by maidenhead grid square. Designed for radios with no GPS or that are not compatable yet.|`@MH DN97uk`| |**@BB**|Post a bulliten to the web dashboard.|`@BB This is a test bulletin.`| |**@[CALLSIGN W/ SSID] A-[MESSAGE]**|Send a message to another station via APRS.|`N0CALL-15 A-This is a test.`| +|**@@[EMAIL ADDRESS] E- [MESSAGE]**|Send an email to an email address.|`@@test@example.org E-This is a test.`| + Send a DMR SMS to the configured dmr_data_id in the application 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. From fccbdc908c37506579a7601c7f944ff8a3f62d08 Mon Sep 17 00:00:00 2001 From: KF7EEL Date: Sun, 31 Jan 2021 12:34:58 -0800 Subject: [PATCH 2/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fd48e24..8a99b58 100755 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ Files modified from original master branch of HBLink3: #### Optional Modules * Flask - required for dashboard +* smtplib - required for sending email This should work for DMR radios that send location data as a UTF-8 NMEA sentence. I am hopping to add support for more radios in the future. From 84f7baf9b413aa6f1dea9ef29b0ec4297628b540 Mon Sep 17 00:00:00 2001 From: KF7EEL Date: Sun, 31 Jan 2021 12:35:22 -0800 Subject: [PATCH 3/3] Update requirements.txt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 455e86d..5f05b9c 100755 --- a/requirements.txt +++ b/requirements.txt @@ -7,3 +7,4 @@ aprslib pynmea2 maidenhead flask +smtplib