Skip to content

Instantly share code, notes, and snippets.

@mcauser
Last active January 26, 2023 15:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcauser/6bce027e307b9497664e6860fd722432 to your computer and use it in GitHub Desktop.
Save mcauser/6bce027e307b9497664e6860fd722432 to your computer and use it in GitHub Desktop.
# check device is responding
AT
# verbose logging
AT+LOG=DEBUG
# switch to AU915
AT+DR=AU915
# before 2022-11-17
# switch to FSB2 (uplink 916.8 - 918.2, downlink 923.9 MHz)
# AT+CH=NUM 8-15
# ch8 = 916.8 mhz
# ch9 = 917.0 mhz
# ch10 = 917.2 mhz
# ch11 = 917.4 mhz
# ch12 = 917.6 mhz
# ch13 = 917.8 mhz
# ch14 = 918.0 mhz
# ch15 = 918.2 mhz
# after 2022-11-17
# switch to FSB6 (uplink 923.2 - 924.6, downlink 926.9 MHz)
AT+CH=NUM 40-47
# ch40 = 923.2 mhz
# ch41 = 923.4 mhz
# ch42 = 923.6 mhz
# ch43 = 923.8 mhz
# ch44 = 924.0 mhz
# ch45 = 924.2 mhz
# ch46 = 924.4 mhz
# ch47 = 924.6 mhz
# get all supported data rates
AT+DR=SCHEME
# helium uses OTAA
AT+MODE=LWOTAA
# get your ids
AT+ID
# create you device on the helium console
# set your ids
AT+ID=DevEui, "60:81:XX:XX:XX:XX:XX:XX"
AT+ID=AppEui, "60:81:XX:XX:XX:XX:XX:XX"
AT+KEY=APPKEY,"00112233445566778899AABBCCDDEEFF"
# set max power
AT+POWER=22
# connect
AT+JOIN
# send text message
AT+MSG="Hello"
# send the same message in hex
AT+MSGHEX="48 65 6c 6c 6f"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment