7
7
8
8
### Send a single packet to APRS-IS and wait for the response
9
9
10
- # Send a single message to WXBOt , wait for a response message and display it on the console.
10
+ # Send a single message to WXBOT , wait for a response message and display it on the console.
11
11
# Then terminate the test.
12
12
#
13
13
# Author: Joerg Schultze-Lutter, DF1JSL
14
- # https://www.github.com/joergschultzelutter
14
+ # https://www.github.com/joergschultzelutter/robotframework-aprslib
15
15
16
16
*** Settings ***
17
17
Library AprsLibrary.py
20
20
Suite Teardown Close APRS-IS Connection
21
21
22
22
*** Variables ***
23
- ${callsign} DF1JSL-15
24
- ${message} ${callsign}>APRS::WXBOT${SPACE}${SPACE}${SPACE}${SPACE}:sunday
25
- ${filter} g/MPAD/DF1JSL*
23
+
24
+ # This is your APRS-IS call sign. Replace this place holder with your personal call sign
25
+ ${callsign} YOURCALLSIGN
26
+
27
+ # This is the message that we will send out to WXBOT
28
+ ${message} ${callsign}>APRS::WXBOT${SPACE}${SPACE}${SPACE}${SPACE}:tomorrow
29
+
30
+ # APRS-IS server filter, see http://www.aprs-is.net/javAPRSFilter.aspx.
31
+ ${filter} g/WXBOT/${callsign}*
26
32
27
33
*** Test Cases ***
28
34
Send packet to APRS-IS with callsign ${callsign}
54
60
# This is a simple robot which captures up to 10 APRS 'message' type messages and
55
61
# logs their raw messages to the console. Then terminate the test
56
62
# Author: Joerg Schultze-Lutter, DF1JSL
57
- # https://www.github.com/joergschultzelutter
63
+ # https://www.github.com/joergschultzelutter/robotframework-aprslib
58
64
59
65
*** Settings ***
60
66
Library AprsLibrary.py
63
69
Suite Teardown Close APRS-IS Connection
64
70
65
71
*** Variables ***
66
- ${callsign} DF1JSL-15
72
+ # This is your APRS-IS call sign. Replace this value with your personal call sign
73
+ ${callsign} YOURCALLSIGN
74
+
75
+ # APRS-IS server filter, see http://www.aprs-is.net/javAPRSFilter.aspx
67
76
${filter} t/m
68
77
69
78
*** Test Cases ***
@@ -116,9 +125,7 @@ This default set of values will allow you to establish a read-only connection to
116
125
117
126
You can either specify all parameters during the initial setup of the library or alternatively via separate keywords
118
127
119
- ### Define the parameters as part of the library definition
120
-
121
- #### Option 1 - as position parameters
128
+ ### Option 1 - set as position parameters
122
129
123
130
*** Settings ***
124
131
@@ -127,7 +134,7 @@ You can either specify all parameters during the initial setup of the library or
127
134
*** Test Cases ***
128
135
My first test case
129
136
130
- #### Option 2 - as named parameters
137
+ ### Option 2 - set as named parameters
131
138
132
139
*** Settings ***
133
140
@@ -136,7 +143,7 @@ You can either specify all parameters during the initial setup of the library or
136
143
*** Test Cases ***
137
144
My first test case
138
145
139
- ### Use Robot Keywords
146
+ ### Option 3 - Use Robot Keywords
140
147
141
148
| Keyword| Description|
142
149
| ------- | -----------|
0 commit comments