ABP stands for Authentication By Personalization. It means that the encryption keys are configured manually on the device and can start sending frames to the Gateway without needing a ‘handshake’ procedure to exchange the keys (such as the one performed during an OTAA join procedure).
The example below attempts to get any data received after sending the frame. Keep in mind that the Gateway might not be sending any data back, therefore we make the socket non-blocking before attempting to receive, in order to prevent getting stuck waiting for a packet that will never arrive. I
Note for US915 / AU915 regions: most LoRaWAN gateways are configured to listen to 8 channels only, while the region supports up to 64 uplink channels. In order to receive packets, please confirm the frequency plan of your gateway with the channels configured on your device. By default, our devices will transmit on all 64 channels, meaning you might receive packets intermittently. The most common configuration is FSB2, or channels 8-15. Uncomment the respective section in the example below to select the these uplink channels. It is possible to switch to a different sub-band by selecting a different channel set. For more information, have a look here.
FSB2
For LoRaWAN version 1.0.x:
# ---------------------------------------------------------------------------- # # Copyright (c) 2023-2024 SG Wireless - All Rights Reserved # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files(the “Software”), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # # Desc Implements simple lora ABP activation. # ---------------------------------------------------------------------------- # # required imports import logs # for system logging management import lora # for lora-stack import ubinascii # for hex/string conversions import time # for time manipulation # disable fw logs logs.filter_subsystem('lora', False) # switch to lora-wan if not lora.mode(lora._mode.WAN) # configure the stack on region EU-868 lora.wan_params(region=lora._region.REGION_EU868, lwclass=lora._class.CLASS_A) # start end-device commisioning lora.commission( type = lora._commission.ABP, version = lora._version.VERSION_1_0_X, DevAddr = 0x00000000, DevEUI = ubinascii.unhexlify('0000000000000000'), AppSKey = ubinascii.unhexlify('00000000000000000000000000000000'), NwkSKey = ubinascii.unhexlify('00000000000000000000000000000000') ) # start join procedure lora.join() # wait until join while lora.is_joined() == False: print("wait joining ...") time.sleep(2) pass print("-- JOINED --") lora.stats() # open a working port lora.port_open(1) # attach required callback def get_event_str(event): if event == lora._event.EVENT_TX_CONFIRM: return 'EVENT_TX_CONFIRM' elif event == lora._event.EVENT_TX_DONE: return 'EVENT_TX_DONE' elif event == lora._event.EVENT_TX_TIMEOUT: return 'EVENT_TX_TIMEOUT' elif event == lora._event.EVENT_TX_FAILED: return 'EVENT_TX_FAILED' elif event == lora._event.EVENT_TX_CONFIRM: return 'EVENT_TX_CONFIRM' elif event == lora._event.EVENT_RX_DONE: return 'EVENT_RX_DONE' elif event == lora._event.EVENT_RX_TIMEOUT: return 'EVENT_RX_TIMEOUT' elif event == lora._event.EVENT_RX_FAIL: return 'EVENT_RX_FAIL' else: return 'UNKNOWN' def port_any_cb(event, evt_data): print('lora event [ {} ] --> data: {}' .format(get_event_str(event), evt_data)) lora.callback(handler=port_any_cb) # start duty cycle lora.duty_set(10000) lora.enable_rx_listening() lora.duty_start() # schedule sending some test messages i = 1000 while i < 1010: lora.send('tx-message-with-id-{}'.format(i), port=1, confirm=True, id = i) i = i + 1 # --- end of file ------------------------------------------------------------ #
For LoRaWAN version 1.1.x:
# ---------------------------------------------------------------------------- # # Copyright (c) 2023-2024 SG Wireless - All Rights Reserved # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files(the “Software”), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # # Desc Implements simple lora ABP activation. # ---------------------------------------------------------------------------- # # required imports import logs # for system logging management import lora # for lora-stack import ubinascii # for hex/string conversions import time # for time manipulation # disable fw logs logs.filter_subsystem('lora', False) # switch to lora-wan if not lora.mode(lora._mode.WAN) # configure the stack on region EU-868 lora.wan_params(region=lora._region.REGION_EU868, lwclass=lora._class.CLASS_A) # start end-device commisioning lora.commission( type = lora._commission.ABP, version = lora._version.VERSION_1_1_X, DevAddr = 0x00000000, DevEUI = ubinascii.unhexlify('0000000000000000'), AppSKey = ubinascii.unhexlify('00000000000000000000000000000000'), NwkSKey = ubinascii.unhexlify('00000000000000000000000000000000') ) # start join procedure lora.join() # wait until join while lora.is_joined() == False: print("wait joining ...") time.sleep(2) pass print("-- JOINED --") lora.stats() # open a working port lora.port_open(1) # attach required callback def get_event_str(event): if event == lora._event.EVENT_TX_CONFIRM: return 'EVENT_TX_CONFIRM' elif event == lora._event.EVENT_TX_DONE: return 'EVENT_TX_DONE' elif event == lora._event.EVENT_TX_TIMEOUT: return 'EVENT_TX_TIMEOUT' elif event == lora._event.EVENT_TX_FAILED: return 'EVENT_TX_FAILED' elif event == lora._event.EVENT_TX_CONFIRM: return 'EVENT_TX_CONFIRM' elif event == lora._event.EVENT_RX_DONE: return 'EVENT_RX_DONE' elif event == lora._event.EVENT_RX_TIMEOUT: return 'EVENT_RX_TIMEOUT' elif event == lora._event.EVENT_RX_FAIL: return 'EVENT_RX_FAIL' else: return 'UNKNOWN' def port_any_cb(event, evt_data): print('lora event [ {} ] --> data: {}' .format(get_event_str(event), evt_data)) lora.callback(handler=port_any_cb) # start duty cycle lora.duty_set(10000) lora.enable_rx_listening() lora.duty_start() # schedule sending some test messages i = 1000 while i < 1010: lora.send('tx-message-with-id-{}'.format(i), port=1, confirm=True, id = i) i = i + 1 # --- end of file ------------------------------------------------------------ #