Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: DHT22 libmDot-mbed5
Fork of mDot_LoRa_Connect_ABPA_DHT22_sleep by
Revision 13:dced485e5e95, committed 2018-05-17
- Comitter:
- lootspk
- Date:
- Thu May 17 02:09:26 2018 +0000
- Parent:
- 12:8e9badbc7314
- Commit message:
- Changed the unique keys
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Thu May 17 00:09:06 2018 +0000 +++ b/main.cpp Thu May 17 02:09:26 2018 +0000 @@ -30,16 +30,16 @@ // these options must match the settings on your Conduit /* Current test settings -dev address: 072389f7 -net sess key: b35aca73d283996dc3cbc0803af04547 -app sess key: d6f28430da4035273b9e3c07eb30c0dd +dev address: 064ac45b +net sess key: 5526fe0a28a974eb070f7b450433c35c +app sess key: f42ea6890802d8f2c3e9d0d9f37c80a6 */ //device address -static uint8_t network_address[] = { 0x06, 0xf0, 0xa4, 0x08 }; +static uint8_t network_address[] = { 0x06, 0x4a, 0xc4, 0x5b }; //network session key -static uint8_t network_session_key[] = { 0x93, 0xb7, 0xbd, 0xfc, 0xc6, 0x70, 0x4f, 0x60, 0x5b, 0xf8, 0x5a, 0xca, 0xb6, 0x78, 0xea, 0x69 }; +static uint8_t network_session_key[] = { 0x55, 0x26, 0xfe, 0x0a, 0x28, 0xa9, 0x74, 0xeb, 0x07, 0x0f, 0x7b, 0x45, 0x04, 0x33, 0xc3, 0x5c }; //application sesssion or data session key -static uint8_t data_session_key[] = { 0x12, 0xf5, 0xb8, 0x32, 0x26, 0xcb, 0xa0, 0x9e, 0xfb, 0x59, 0x47, 0x7f, 0x6e, 0x66, 0xfd, 0x2f }; +static uint8_t data_session_key[] = { 0xf4, 0x2e, 0xa6, 0x89, 0x08, 0x02, 0xd8, 0xf2, 0xc3, 0xe9, 0xd0, 0xd9, 0xf3, 0x7c, 0x80, 0xa6 }; static uint8_t frequency_sub_band = 2; //VFI static bool public_network = true; //enable receipt of ackknowledge packets 0 = No, 1 = Yes