Skip to content

Commit

Permalink
Merge pull request #15 from brentru/single-channel-example
Browse files Browse the repository at this point in the history
adding example for single-channel sends
  • Loading branch information
brentru committed Jan 6, 2019
2 parents 68b7c66 + 3784258 commit 435a482
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions examples/tinylora_simpletest_single_channel.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
import time
import busio
import digitalio
import board
from adafruit_tinylora.adafruit_tinylora import TTN, TinyLoRa

# Board LED
led = digitalio.DigitalInOut(board.D13)
led.direction = digitalio.Direction.OUTPUT

spi = busio.SPI(board.SCK, MOSI=board.MOSI, MISO=board.MISO)

# RFM9x Breakout Pinouts
cs = digitalio.DigitalInOut(board.D5)
irq = digitalio.DigitalInOut(board.D6)

# Feather M0 RFM9x Pinouts
# cs = digitalio.DigitalInOut(board.RFM9X_CS)
# irq = digitalio.DigitalInOut(board.RFM9X_D0)

# TTN Device Address, 4 Bytes, MSB
devaddr = bytearray([0x00, 0x00, 0x00, 0x00])

# TTN Network Key, 16 Bytes, MSB
nwkey = bytearray([0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00])

# TTN Application Key, 16 Bytess, MSB
app = bytearray([0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00])

ttn_config = TTN(devaddr, nwkey, app, country='US')

# Broadcasting on channel 0 in US Region - 903.9 MHz
lora = TinyLoRa(spi, cs, irq, ttn_config, channel=0)

while True:
data = bytearray(b"\x43\x57\x54\x46")
print('Sending packet...')
lora.send_data(data, len(data), lora.frame_counter)
print('Packet sent!')
led.value = True
lora.frame_counter += 1
time.sleep(1)
led.value = False

0 comments on commit 435a482

Please sign in to comment.