Difference between revisions of "Radio Group/Pager"

From Nottinghack Wiki
Jump to navigation Jump to search
m
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[File:MB7PNH.JPG|thumb|250px|right|MB7PNH]]
+
{{project
We will soon have a pager transmitter running from within the hackspace. It'll be a small USB powered box, probably stuck to a window with suction cups. 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 [https://aaronsplace.co.uk/blog/2024-03-30-adafruit-feather-32u4-lora-board-sending-pagers-pocsag.html Aaron's website]
+
|primary=[[User:Asj|Asj]]
 +
|type=member
 +
|created=27/03/2024
 +
|location=Screen Printing Area
 +
|repo=[https://github.com/AaronJackson/rfm69-pocsag/ GitHub]
 +
|status=Complete
 +
|image=File:MB7PNH.JPG
 +
}}
 +
[[Category:Projects]]
 +
 
 +
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 [https://aaronsplace.co.uk/blog/2024-03-30-adafruit-feather-32u4-lora-board-sending-pagers-pocsag.html Aaron's website]
  
 
== MQTT Topics ==
 
== 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 <code>nh/</code> topic prefix for that reason You must have an amateur radio license to transmit messages via this node. These topics are available via jarvis.
+
'''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 <code>nh/</code> topic prefix for that reason You must have an amateur radio license to transmit messages via this node. These topics are available via jarvis.
  
 
{| class="wikitable"
 
{| class="wikitable"

Revision as of 19:30, 21 April 2024

Pager
MB7PNH.JPG
Primary Contact Asj
Created 27/03/2024
Completed {{{completeddate}}}
Dormant {{{dormantdate}}}
Version {{{version}}}
Members {{{members}}}
Manufacturer {{{manufacturer}}}
Model {{{model}}}
Location Screen Printing Area
GitHub / Repo GitHub
Status Complete
Type Members Project
Live Status {{{livestatus}}}
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.

POCSAG MQTT Topics
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:
  • the number of transmitter messages (.../tx_count),
  • the reconnect count (.../reconnects), and,
  • the power status (.../power).

It's probably worth subscribing to pocsag/status/# if you want these.

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.