Wiki source code of TCP Connection Instruction

Version 16.3 by Xiaoling on 2022/05/30 11:59

Hide last authors
Xiaoling 1.11 1 **Contents:**
Xiaoling 1.1 2
Xiaoling 1.11 3 {{toc/}}
Xiaoling 1.1 4
Xiaoling 1.11 5
Xiaoling 16.2 6
7
Xiaoling 1.2 8 = 1. Introduction =
Xiaoling 1.1 9
Xiaoling 1.2 10 In the TCP IP Client mode, LoRa Gateway can accept LoRa or LoRaWAN packets and send it to the TCP/IP server.
Xiaoling 1.1 11
12
Xiaoling 1.2 13 = 2. LoRaWAN Mode TCP Connection =
Xiaoling 1.1 14
Xiaoling 1.2 15 == 2.1 Support Hardware ==
Xiaoling 1.1 16
Xiaoling 1.2 17 * [[LPS8>>url:http://www.dragino.com/products/lora-lorawan-gateway/item/148-lps8.html]]
18 * [[LG308>>url:http://www.dragino.com/products/lora-lorawan-gateway/item/140-lg308.html]], [[DLOS8>>url:http://www.dragino.com/products/lora-lorawan-gateway/item/160-dlos8.html]]
Xiaoling 1.1 19
Xiaoling 11.2 20
Xiaoling 16.2 21
Xiaoling 1.2 22 == 2.2 Typology & Instruction ==
Xiaoling 1.1 23
Xiaoling 3.2 24 [[image:image-20220527144058-1.png]]
Xiaoling 1.1 25
Xiaoling 1.2 26 Network Structure
Xiaoling 1.1 27
Xiaoling 15.2 28 [[Intrudctions>>http://wiki1.dragino.com/xwiki/bin/view/Main/Communicate%20with%20ABP%20End%20Node%20without%20LoRaWAN%20Network%20Server%20---%20LG308/#H4.Example2:CommunicatetoTCPServer]]
Xiaoling 1.1 29
30
Xiaoling 1.2 31 = 3. Raw LoRa Mode TCP Connection =
Xiaoling 1.1 32
Xiaoling 1.3 33 == 3.1 Support Hardware ==
Xiaoling 1.2 34
Xiaoling 1.10 35 * [[LG01-N>>url:http://www.dragino.com/products/lora-lorawan-gateway/item/143-lg01n.html]], [[OLG01-N>>url:http://www.dragino.com/products/lora-lorawan-gateway/item/144-olg01n.html]]
36 * [[LG02>>url:http://www.dragino.com/products/lora-lorawan-gateway/item/135-lg02.html]], [[OLG02>>url:http://www.dragino.com/products/lora-lorawan-gateway/item/136-olg02.html]]
Xiaoling 1.2 37
Xiaoling 16.3 38
39
Xiaoling 1.3 40 == 3.2 Typology ==
Xiaoling 1.2 41
42 The working topology is as below. In this mode, The Uplink LoRa packets should use a customized format.
43
Xiaoling 3.2 44 [[image:image-20220527144300-2.png]]
Xiaoling 1.2 45
46 TCP/IP Forward working topology
47
48
Xiaoling 1.3 49 == 3.3 Instruction Before Firmware lgw~-~-build-v5.4.1606631585-20201129-1434 ==
Xiaoling 1.2 50
Xiaoling 1.3 51 === 3.3.1 Select TCP-IP Client mode ===
Xiaoling 1.2 52
Xiaoling 4.2 53 [[image:image-20220527144723-3.png]]
Xiaoling 1.2 54
55 Select TCP-IP Client mode
56
57
Xiaoling 1.3 58 === 3.3.2 Configure the Radio channel ===
Xiaoling 1.2 59
Xiaoling 5.2 60 [[image:image-20220527144755-4.png]]
Xiaoling 1.2 61
62 Configure the Radio channel with the match radio settings frequency as the LoRa End Node
63
64
Xiaoling 1.3 65 === 3.3.3 Configure TCP Server Info ===
Xiaoling 1.2 66
67 Note: Gateway may receive many LoRa packets, it will only transfer the packet with the same ID as specify in the channel.
68
Xiaoling 6.2 69 [[image:image-20220527144837-5.png]]
Xiaoling 1.2 70
71 Configure TCP Server Info
72
73
Xiaoling 1.6 74 === 3.3.4 About uplink data format from End Node ===
Xiaoling 1.2 75
76 The LoRa end node should upload the data with below format:
77
Xiaoling 1.5 78 (% class="box" %)
79 (((
Xiaoling 6.3 80 Uplink Format:** (% style="color:#4f81bd" %)<Channel_ID>data(%%)**
Xiaoling 1.5 81 For example, if we have configured 2 channels 12345 and 34567.
Xiaoling 1.2 82 And there is are three LoRa End nodes sending: 12345,34567,78
83 The LG02 will accept the data from 12345 and 34567, it will ignore the data from Node 78
Xiaoling 1.5 84 **Case 1**:
Xiaoling 1.2 85 Node 12345 send <12345>field1=0.0&field2=1102.0
86 Node 34567 doesn’t send anyting
Xiaoling 1.5 87 The TCP/IP server will get {"12345":"field1=0.0&field2=1102.0"}
88 **Case 2**:
Xiaoling 1.2 89 Node 12345 send <12345>field1=0.0&field2=1102.0
90 Node 34567 send <34567>temp=34
Xiaoling 1.5 91 The TCP/IP server will get {"34567":"temp=34","12345":"field1=0.0&field2=1102.0"}
92 )))
Xiaoling 1.2 93
Xiaoling 7.2 94 [[image:image-20220527144959-6.png]]
Xiaoling 1.2 95
96 Configure TCP Server Info
97
Xiaoling 1.7 98 LoRa End Device reference source code: [[check this link>>url:https://github.com/dragino/Arduino-Profile-Examples/blob/master/libraries/Dragino/examples/IoTServer/ThingSpeak/MQTT_Client/MQTT_DHT11_Client_updata_to_ThingSpeak_/MQTT_DHT11_Client_updata_to_ThingSpeak_.ino]].
Xiaoling 1.2 99
100
Xiaoling 1.3 101 == 3.4 Instruction After Firmware lgw~-~-build~-~-v5.4.1612428704~-~-20210204-1653 ==
Xiaoling 1.2 102
Xiaoling 1.3 103 === 3.4.1 Configure the Radio channel ===
Xiaoling 1.2 104
Xiaoling 8.2 105 [[image:image-20220527145111-7.png]]
Xiaoling 1.2 106
107 Configure the Radio channel with the match radio settings frequency as the LoRa End Node
108
109
Xiaoling 1.4 110 === 3.4.2 Configure TCP Server Info ===
Xiaoling 1.2 111
112 Note: Gateway will transfer the packet if they arrive in the right format .
113
Xiaoling 9.2 114 [[image:image-20220527145151-8.png]]
Xiaoling 1.2 115
116 Configure TCP Server Info
117
118
Xiaoling 1.4 119 === 3.4.3 About uplink data format from End Node ===
Xiaoling 1.2 120
121 The LoRa end node should upload the data with below format:
122
Xiaoling 1.8 123 (% class="box" %)
124 (((
Xiaoling 9.3 125 Uplink Format: (% style="color:#4f81bd" %)**<Channel_ID>data**(%%)
Xiaoling 1.2 126 And there is a LoRa End node sending below packets:
127 *<12345>Hello From Sensor1
Xiaoling 1.8 128 )))
Xiaoling 1.2 129
130
Xiaoling 1.8 131 (% class="box" %)
132 (((
133 LG01/LG02 will uplink 12345:Hello From Sensor1 and usr can use logread -f to check the log.
134 Thu Feb  4 08:21:49 2021 user.notice iot_keep_alive: use WAN or WiFi for internet access now
135 Thu Feb  4 08:21:53 2021 daemon.info tcp_process.sh[18564]: /var/iot/channels/ CREATE 12345
136 Thu Feb  4 08:21:53 2021 user.notice root: [IoT.TCP]: Check for sensor update
137 Thu Feb  4 08:21:53 2021 user.notice root: [IoT.TCP]: Found Data at Local Channels: 12345
138 Thu Feb  4 08:21:53 2021 user.notice root: [IoT.TCP]:
139 Thu Feb  4 08:21:53 2021 user.notice root: [IoT.TCP]:~-~-~-~--
140 Thu Feb  4 08:21:53 2021 user.notice root: [IoT.TCP]:server: 10.130.2.149
141 Thu Feb  4 08:21:53 2021 user.notice root: [IoT.TCP]:port: 60000
142 Thu Feb  4 08:21:53 2021 user.notice root: [IoT.TCP]:decoder: LG01/LG02 Raw Data
143 Thu Feb  4 08:21:53 2021 user.notice root: [IoT.TCP]:tcp_data: 12345:Hello From Sensor1;
144 Thu Feb  4 08:21:53 2021 user.notice root: [IoT.TCP]:~-~-~-~-~-~-
145 )))
Xiaoling 1.2 146
147
148 and TCP server get:
149
Xiaoling 10.2 150 [[image:image-20220527145304-9.png]]
Xiaoling 1.2 151
152 TCP Server
153
Xiaoling 1.8 154 LoRa End Device reference source code: [[check this link>>url:https://github.com/dragino/Arduino-Profile-Examples/blob/master/libraries/Dragino/examples/IoTServer/ThingSpeak/MQTT_Client/MQTT_DHT11_Client_updata_to_ThingSpeak_/MQTT_DHT11_Client_updata_to_ThingSpeak_.ino]].
Xiaoling 1.2 155
Xiaoling 1.8 156
Xiaoling 1.4 157 = 4. Reference =
Xiaoling 1.2 158
159 Set up a TCP/IP server use node.js: [[Reference Link>>url:http://www.dragino.com/downloads/index.php?dir=LoRa_Gateway/LG02-OLG02/Firmware/customized_script/&file=node_tcp_server.txt]]