Radio Group/Pager: Difference between revisions
No edit summary |
No edit summary |
||
Line 30: | Line 30: | ||
* the power status (<code>.../power</code>). | * the power status (<code>.../power</code>). | ||
It's probably worth subscribing to <code>pocsag/status/#</code> if you want these. | It's probably worth subscribing to <code>pocsag/status/#</code> if you want these. | ||
|} | |||
== RICs == | |||
The addresses for these have been generated randomly. There is nothing stopping you from programming a pager to receive messages as these RICs, if you happened to have a pager and wanted to receive notifications while you're in the space. You do not need an amateur radio license to receive pager messages. 👀 | |||
{| class="wikitable" | |||
|+ RICs | |||
|- | |||
! RIC !! Purpose | |||
|- | |||
| 754542 || Receive alerts for [[Hackspace Instrumentation]], e.g. service becomes unavailable or back up again. This was added to the [[Discord]] bot as it was already processing these status messages. | |||
|- | |||
| 307040 || Hackspace Doorbells, also sent via [[Discord]] bot. | |||
|} | |} | ||
Revision as of 11:00, 22 April 2024
Pager | |
---|---|
Primary Contact | Asj |
Created | 27/03/2024 |
Location | Screen Printing Area |
GitHub / Repo | GitHub |
Status | Complete |
Type | Members Project |
QR code |
We have a pager transmitter running from within the hackspace. The station has been allocated the callsign MB7PNH (Pager Nottingham Hackspace), and is built using an Adafruit Feather LoRa board, which has an RFM69 module. There are more details about this, and the PCB, on Aaron's website
MQTT Topics
Transmission of pager messages using MB7PNH without an amateur radio license is against the law - these topics are not listed on MQTT Topics or use the nh/
topic prefix for that reason You must have an amateur radio license to transmit messages via this node. These topics are available via jarvis.
Topic | Description |
---|---|
pocsag/send |
Sends a pager message to a specific RIC. RIC and message are separated with a pipe symbol e.g. "300424|Hello Aaron!" |
pocsag/power |
Taking a value of either "ON" or "OFF" - this can be used to power down the transmitter if there is an issue (this is a requirement for unattended nodes). |
pocsag/status |
Sending an empty message to this will return:
It's probably worth subscribing to |
RICs
The addresses for these have been generated randomly. There is nothing stopping you from programming a pager to receive messages as these RICs, if you happened to have a pager and wanted to receive notifications while you're in the space. You do not need an amateur radio license to receive pager messages. 👀
RIC | Purpose |
---|---|
754542 | Receive alerts for Hackspace Instrumentation, e.g. service becomes unavailable or back up again. This was added to the Discord bot as it was already processing these status messages. |
307040 | Hackspace Doorbells, also sent via Discord bot. |
Responding to a failure
If there is a failure with this pager node, or it's reported that it is causing interference, it should be powered off immediately. This can be done from jarvis by running
mosquitto_pub -t pocsag/power -m OFF
The default state after plugging in the transmitter is off. If the connection the MQTT server is lost, the ESP8266 will pull the Adafruit Feather's ENable pin low, which turns off the 3.3v regulator, preventing power from reaching the RFM69 module.