-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to MQTT and add a LTE interface
- Loading branch information
Showing
9 changed files
with
423 additions
and
411 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
satcomSDcard/ | ||
*~ | ||
.settings* | ||
credentials.cfg |
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 |
---|---|---|
@@ -1,43 +1,35 @@ | ||
# Message broker (rabbitmq) connection details | ||
# Default port is 5672 | ||
[rabbitmq] | ||
hostname = localhost | ||
port = 5672 | ||
# MQTT broker (mosquitto) connection details | ||
# Default port is 1883 | ||
[mqtt] | ||
|
||
port = 1883 | ||
|
||
# change stuff here: v v v v v v v v v v v v v | ||
#--------------------------------------------------------------------------- | ||
# username and password of the rabbitmq broker | ||
user = ENTER_HERE | ||
password = ENTER_HERE | ||
|
||
#--------------------------------------------------------------------------- | ||
# ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ | ||
# relay server address: | ||
# for simulator | ||
hostname = localhost | ||
|
||
# for real application | ||
#hostname = ENTER_HERE | ||
|
||
# Rock7 HTTP interface connection details | ||
[iridium] | ||
# Local UDP connection details | ||
[lte] | ||
|
||
# change stuff here: v v v v v v v v v v v v v | ||
#--------------------------------------------------------------------------- | ||
# UDP port on which the relay server is listening for messages | ||
target_port = 30000 | ||
|
||
[iridium] | ||
# Address of the destination Rock7 HTTP gateway: | ||
# for simulator | ||
url = http://localhost:45678 | ||
|
||
# for real application | ||
#url = ENTER_HERE | ||
|
||
# IMEI of the destination RockBLOCK modem | ||
imei = ENTER_HERE | ||
|
||
# Rock7 username | ||
username = ENTER_HERE | ||
|
||
# Rock7 password | ||
password = ENTER_HERE | ||
#url = https://core.rock7.com/rockblock/MT:80 | ||
|
||
#--------------------------------------------------------------------------- | ||
# ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ | ||
|
||
# Local port listening for MT messages from the Iridium gateway | ||
local_port = 45679 | ||
local_port = 45679 |
Oops, something went wrong.