MTCDT

From Noisebridge
Jump to navigation Jump to search

A LoRa to Ethernet gateway with integrated mosquito server

http://www.multitech.net/developer/products/multiconnect-conduit-platform/

FCC report for LoRa module (inserts into AP2) https://fccid.io/AU792U13A16859

Modified this particular unit, removed non-standard screw on power supply connection with molex connector. This is unit uses a ST L7986A power regulator chip with a rated design input of 9-36v for this system.

The case is screwed together with assumeably Torx 10 screws, a ground down modified flat head was used instead.

These units have an ethernet port that can be used to bridge/connect directly to the internet. There is also a host USB port which can be connected to an Android phone with USB tethering enabled, this creates a configurable network interface that can then use the phones wifi connections or cellular data.


Error creating thumbnail: File missing
Error creating thumbnail: File missing
Error creating thumbnail: File missing

Configuration[edit]

Test configuration based on http://www.multitech.net/developer/software/lora/getting-started-with-lora-conduit-mlinux/

/var/config/lora/lora-network-server.conf

{
        "lora": {
                "netID": "010203",	/* netID for beacon packets */
                "frequencyBand": "915", /* "915" or "868" */
                "channelPlan": "US915", /* AU915, US915, EU868, AS923 or KR920 */
                "frequencySubBand": 3,  /* Sub-band for US operation, 1-8 */
                "rx1DatarateOffset": 0, /* Datarate offset for mote rx window 1 sent in join response (0-3) */
                "rx2Datarate": 8,               /* Datarate for mote rx window 2 sent in join response EU:(0-7) AU/US:(8$
                "maxTxPower": 14,	/* Max Tx power (dBm), -6 to 26 */
                "frequencyEU": 867500000, /* center freq for extra EU channels (Hz) */
                "frequencyAS": 922600000, /* center freq for extra AS channels (Hz) */
                "frequencyKR": 922900000  /* center freq for extra KR channels (Hz) */
        },
        "udp": {
                "appPortUp": 1784, /* port for user-developed application use */
                "appPortDown": 1786 /* port for user-developed application use */
        },
        "addressRange": {
                "start": "00:00:00:01", /* address range used for mDots */
                "end": "FF:FF:FF:FE"
        },
        "network": {
                "public": false,    /* set to false for private LoRa network with mDots + Conduit */
                "leasetime": 0,  /* time until mDot join expires (minutes) or 0 for no expiration */
                "name": "noisebridge", /* configure network security */
                "passphrase": "noisebridge"
        },
        "log" : {
                "console" : true,
                "syslog" : false,
                "level" : 30, /* error=10, warn=20, info=30, debug=50, trace=60, max=100 */
                "path": "/var/log/lora-network-server.log"
        },
        "mqtt": {
                "enabled": true
        }
}