-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
570 additions
and
95 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// LoRaWAN Configuration | ||
|
||
/* OTAA para*/ | ||
static uint8_t appEui[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; | ||
static uint8_t devEui[] = { 0x16, 0x7E, 0x5E, 0x17, 0x82, 0xA1, 0x52, 0x45 }; | ||
static uint8_t appKey[] = { 0x0C, 0xF8, 0x58, 0x60, 0x84, 0xAB, 0xD9, 0x22, 0x91, 0xA5, 0xB1, 0xF3, 0xDA, 0xD7, 0x7F, 0xDF }; | ||
|
||
uint16_t userChannelsMask[6]={ 0x00FF,0x0000,0x0000,0x0000,0x0000,0x0000 }; | ||
static DeviceClass_t lorawanClass = LORAWAN_CLASS; | ||
|
||
// Devise location | ||
const float latitude = 39.572813; | ||
const float longitude = 2.637521; | ||
const int alt = 9; | ||
|
||
// Other params | ||
float SensorId= 11.04;// Sensor identifcator number | ||
const int DutyCycle = 600000; // Transmision and reading period | ||
const int Sleep4NoNoise = 300000; // Sleep period when low noise | ||
const int LowNoiseLevel = 39; // Limit for low noise mode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// LoRaWAN Configuration | ||
|
||
/* OTAA para*/ | ||
static uint8_t devEui[] = { 0x70, 0xB3, 0xD5, 0x7E, 0xD0, 0x05, 0x77, 0x79 }; | ||
static uint8_t appEui[] = { 0x76, 0x15, 0xF3, 0x09, 0x37, 0x72, 0xA6, 0x55 }; | ||
static uint8_t appKey[] = { 0x42, 0xDD, 0xB2, 0x28, 0x09, 0xC0, 0x9E, 0xF3, 0x29, 0x10, 0xD9, 0xCB, 0xE7, 0xC7, 0xDA, 0x27 }; | ||
|
||
uint16_t userChannelsMask[6]={ 0x00FF,0x0000,0x0000,0x0000,0x0000,0x0000 }; | ||
static DeviceClass_t lorawanClass = LORAWAN_CLASS; | ||
|
||
// Devise location | ||
const float latitude = 39.53573; | ||
const float longitude = 2.71832; | ||
const int alt = 20; | ||
|
||
// Other params | ||
float SensorId= 10.01;// Sensor identifcator number | ||
const int DutyCycle = 600000; // Transmision and reading period | ||
const int Sleep4NoNoise = 300000; // Sleep period when low noise | ||
const int LowNoiseLevel = 180; // Limit for low noise mode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters