Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroennijhof committed May 17, 2017
1 parent d42f2ae commit 638afb1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# LoRaWAN
This is a LoRaWAN v1.0 implementation in python.

You still need a LoRa driver to actually get or send a packet at radio level.
Testing has been done with https://github.com/mayeranalytics/pySX127x icw a RFM95 attached to a Raspberry PI.

See: https://www.lora-alliance.org/portals/0/specs/LoRaWAN%20Specification%201R0.pdf

## Installation
Expand All @@ -18,7 +21,7 @@ packet = [0x80,0x8f,0x77,0xbb,0x07,0x00,0x02,0x00,0x06,0xbd,0x33,0x42,0xa1,0x9f,
print("Reading lorawan packet:")
lorawan = LoRaWAN.new(nwkey, appkey)
lorawan.read(payload)
lorawan.read(packet)
print(lorawan.get_mhdr().get_mversion())
print(lorawan.get_mhdr().get_mtype())
print(lorawan.get_mic())
Expand Down

0 comments on commit 638afb1

Please sign in to comment.