Last modified by Xiaoling on 2023/07/18 10:12

From version 170.30
edited by Xiaoling
on 2022/06/22 11:22
Change comment: There is no comment for this version
To version 185.1
edited by Bei Jinggeng
on 2022/06/28 15:12
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.Xiaoling
1 +XWiki.Bei
Content
... ... @@ -265,10 +265,6 @@
265 265  * The 7th byte (EXT #): defines the external sensor model.
266 266  * The 8(% _msthash="734578" _msttexthash="21372" _mstvisible="4" %)^^th^^(%%) ~~ 11(% _msthash="734579" _msttexthash="21372" _mstvisible="4" %)^^th^^(%%) byte: the value for external sensor value. The definition is based on external sensor type. (If EXT=0, there won’t be these four bytes.)
267 267  
268 -
269 -
270 -
271 -
272 272  === 2.4.1 Decoder in TTN V3 ===
273 273  
274 274  When the uplink payload arrives TTNv3, it shows HEX format and not friendly to read. We can add LHT65N decoder in TTNv3 for friendly reading.
... ... @@ -299,10 +299,6 @@
299 299  * BAT status=(0Xcba4>>14)&0xFF=11(B),very good
300 300  * Battery Voltage =0xCBF6&0x3FFF=0x0BA4=2980mV
301 301  
302 -
303 -
304 -
305 -
306 306  === 2.4.3 Built-in Temperature ===
307 307  
308 308  [[image:image-20220522235639-2.png||_mstalt="431756" _mstvisible="3" height="138" width="722"]]
... ... @@ -313,10 +313,6 @@
313 313  
314 314  * Temperature:  (0xF5C6-65536)/100=-26.18℃
315 315  
316 -
317 -
318 -
319 -
320 320  === 2.4.4 Built-in Humidity ===
321 321  
322 322  [[image:image-20220522235639-4.png||_mstalt="432484" _mstvisible="3" height="138" width="722"]]
... ... @@ -323,10 +323,6 @@
323 323  
324 324  * Humidity:    0x025C/10=60.4%
325 325  
326 -
327 -
328 -
329 -
330 330  === 2.4.5 Ext # ===
331 331  
332 332  Bytes for External Sensor:
... ... @@ -479,10 +479,6 @@
479 479  * Sync time OK:  1: Set time ok,0: N/A. After time SYNC request is sent, LHT65N will set this bit to 0 until got the time stamp from the application server.
480 480  * Unix Time Request:  1: Request server downlink Unix time, 0 : N/A. In this mode, LHT65N will set this bit to 1 every 10 days to request a time SYNC. (AT+SYNCMOD to set this)
481 481  
482 -
483 -
484 -
485 -
486 486  ==== 2.4.6.3 Ext~=6, ADC Sensor (use with E2 Cable) ====
487 487  
488 488  In this mode, user can connect external ADC sensor to check ADC value. The 3V3_OUT can
... ... @@ -493,8 +493,42 @@
493 493  
494 494  AT+EXT=6,timeout  (% _msthash="506085" _msttexthash="8782189" _mstvisible="3" style="color:red" %)Time to power this sensor, from 0 ~~ 65535ms
495 495  
476 +For example:
496 496  
478 +AT+EXT=6,1000 will power this sensor for 1000ms before sampling the ADC value.
497 497  
480 +
481 +Or use **downlink command A2** to set the same.
482 +
483 +The measuring range of the node is only about 0.1V to 1.1V The voltage resolution is about 0.24mv.
484 +
485 +When the measured output voltage of the sensor is not within the range of 0.1V and 1.1V, the output voltage terminal of the sensor shall be divided The example in the following figure is to reduce the output voltage of the sensor by three times If it is necessary to reduce more times, calculate according to the formula in the figure and connect the corresponding resistance in series.
486 +
487 +[[image:image-20220628150112-1.png||height="241" width="285"]]
488 +
489 +
490 +When ADC_IN1 pin is connected to GND or suspended, ADC value is 0
491 +
492 +[[image:image-20220628150714-4.png]]
493 +
494 +
495 +When the voltage collected by ADC_IN1 is less than the minimum range, the minimum range will be used as the output; Similarly, when the collected voltage is greater than the maximum range, the maximum range will be used as the output.
496 +
497 +1) The minimum range is about 0.1V. Each chip has internal calibration, so this value is close to 0.1V
498 +
499 +[[image:image-20220628151005-5.png]]
500 +
501 +
502 +2) The maximum range is about 1.1V. Each chip has internal calibration, so this value is close to 1.1v
503 +
504 +[[image:image-20220628151056-6.png]]
505 +
506 +
507 +3) Within range
508 +
509 +[[image:image-20220628151143-7.png]]
510 +
511 +
498 498  == 2.5 Show data on Datacake ==
499 499  
500 500  (((
... ... @@ -557,10 +557,6 @@
557 557  1. IoT Server sends a downlink LoRaWAN command to [[poll the value>>||anchor="H2.6.4Pollsensorvalue"]] for specify time range.
558 558  1. Set [[PNACKMD=1>>||anchor="H4.13AutoSendNone-ACKmessages"]], LHT65N will wait for ACK for every uplink, when there is no LoRaWAN network, LHT65N will store the sensor data, and it will send all messages after network recover.
559 559  
560 -
561 -
562 -
563 -
564 564  === 2.6.2 Unix TimeStamp ===
565 565  
566 566  
... ... @@ -966,28 +966,43 @@
966 966  
967 967  == 2.7 Alarm Mode ==
968 968  
979 +(((
969 969  when the device is in alarm mode, it checks the built-in sensor temperature for a short time. if the temperature exceeds the preconfigured range, it sends an uplink immediately.
981 +)))
970 970  
983 +(((
971 971  (% style="color:red" %)Note: alarm mode adds a little power consumption, and we recommend extending the normal read time when this feature is enabled.
985 +)))
972 972  
987 +(((
973 973  **AT COMMAND FOR ALARM MODE:**
989 +)))
974 974  
975 975  (% _mstvisible="1" class="box infomessage" %)
976 976  (((
993 +(((
977 977  **AT+WMOD=1**:  Enable/disable alarm mode. (0: Disabled, 1: Enabled)
995 +)))
978 978  
997 +(((
979 979  **AT+CITEMP=1**:  The interval between checking the alarm temperature. (In minutes)
999 +)))
980 980  
1001 +(((
981 981  **AT+ARTEMP**:  Gets or sets the alarm range of the internal temperature sensor
1003 +)))
982 982  
1005 +(((
983 983  **AT+ARTEMP=? **:  Gets the alarm range of the internal temperature sensor(% _mstvisible="3" style="display:none" %)
1007 +)))
984 984  
1009 +(((
985 985  **AT+ARTEMP=45,105**:  Set the internal temperature sensor alarm range from 45 to 105.
986 986  )))
1012 +)))
987 987  
988 988  
989 989  
990 -
991 991  == 2.8 LED Indicator ==
992 992  
993 993  The LHT65 has a triple color LED which for easy showing different stage .
... ... @@ -997,7 +997,7 @@
997 997  In a normal working state:
998 998  
999 999  * For each uplink, the BLUE LED or RED LED will blink once.
1000 - BLUE LED when external sensor is connected.
1025 +BLUE LED when external sensor is connected.
1001 1001  * RED LED when external sensor is not connected
1002 1002  * For each success downlink, the PURPLE LED will blink once
1003 1003  
... ... @@ -1014,8 +1014,24 @@
1014 1014  
1015 1015  [[image:image-20220619092222-1.png||height="182" width="188"]][[image:image-20220619092313-2.png||height="182" width="173"]]
1016 1016  
1017 -1m long breakout cable for LHT65N
1042 +**1m long breakout cable for LHT65N. Features:**
1018 1018  
1044 +* (((
1045 +Use for AT Command, works for both LHT52/LHT65N
1046 +)))
1047 +* (((
1048 +Update firmware for LHT65N, works for both LHT52/LHT65N
1049 +)))
1050 +* (((
1051 +Supports ADC mode to monitor external ADC
1052 +)))
1053 +* (((
1054 +Supports Interrupt mode
1055 +)))
1056 +* (((
1057 +Exposed All pins from the LHT65N Type-C connector.
1058 +)))
1059 +
1019 1019  [[image:image-20220619092421-3.png||height="371" width="529"]]
1020 1020  
1021 1021  
... ... @@ -1037,26 +1037,48 @@
1037 1037  
1038 1038  = 4. Configure LHT65N via AT command or LoRaWAN downlink =
1039 1039  
1081 +(((
1040 1040  Use can configure LHT65N via AT Command or LoRaWAN Downlink.
1083 +)))
1041 1041  
1042 -* AT Command Connection: See [[FAQ>>||anchor="H6.FAQ"]].
1085 +* (((
1086 +AT Command Connection: See [[FAQ>>||anchor="H6.FAQ"]].
1087 +)))
1043 1043  
1044 -* LoRaWAN Downlink instruction for different platforms: [[IoT LoRaWAN Server>>doc:Main.WebHome]]
1089 +* (((
1090 +LoRaWAN Downlink instruction for different platforms: [[IoT LoRaWAN Server>>doc:Main.WebHome]]
1091 +)))
1045 1045  
1093 +(((
1046 1046  There are two kinds of commands to configure LHT65N, they are:
1095 +)))
1047 1047  
1048 -* (% style="color:#4f81bd" %)**General Commands**.
1097 +* (((
1098 +(% style="color:#4f81bd" %)**General Commands**.
1099 +)))
1049 1049  
1101 +(((
1050 1050  These commands are to configure:
1103 +)))
1051 1051  
1052 -1. General system settings like: uplink interval.
1053 -1. LoRaWAN protocol & radio-related commands.
1105 +1. (((
1106 +General system settings like: uplink interval.
1107 +)))
1108 +1. (((
1109 +LoRaWAN protocol & radio-related commands.
1110 +)))
1054 1054  
1112 +(((
1055 1055  They are the same for all Dragino Devices which supports DLWS-005 LoRaWAN Stack(Note~*~*). These commands can be found on the wiki: [[End Device Downlink Command>>doc:Main.End Device AT Commands and Downlink Command.WebHome]]
1114 +)))
1056 1056  
1057 -* (% style="color:#4f81bd" %)**Commands special design for LHT65N**
1116 +* (((
1117 +(% style="color:#4f81bd" %)**Commands special design for LHT65N**
1118 +)))
1058 1058  
1120 +(((
1059 1059  These commands are only valid for LHT65N, as below:
1122 +)))
1060 1060  
1061 1061  
1062 1062  == 4.1 Set Transmit Interval Time ==
... ... @@ -1345,16 +1345,11 @@
1345 1345  
1346 1346  (% _msthash="506061" _msttexthash="170755" %)**Connection:**
1347 1347  
1348 -(% _msthash="506062" _msttexthash="1187732" %)
1349 -**✓ (% style="background-color:yellow" %)USB to TTL GND <~-~->GND(%%)**
1411 +* (% style="background-color:yellow" %)**USB to TTL GND <~-~->GND**
1412 +* (% style="background-color:yellow" %)**USB to TTL RXD <~-~-> D+**
1413 +* (% style="background-color:yellow" %)**USB to TTL TXD <~-~-> A11**
1414 +* (% style="background-color:yellow" %)**USB to TTL 3.3V <~-~-> D-**
1350 1350  
1351 -(% _msthash="506063" _msttexthash="1158313" %)**✓  **(% style="background-color:yellow" %)**USB to TTL RXD <~-~-> D+**
1352 -
1353 -(% _msthash="506064" _msttexthash="1175629" %)**✓  **(% style="background-color:yellow" %)**USB to TTL TXD <~-~-> A11**
1354 -
1355 -(% _msthash="506065" _msttexthash="1164696" %)**✓  **(% style="background-color:yellow" %)**USB to TTL 3.3V <~-~-> D-**
1356 -
1357 -
1358 1358  (((
1359 1359  In PC, User needs to set serial tool(such as [[**putty**>>https://www.chiark.greenend.org.uk/~~sgtatham/putty/latest.html]], SecureCRT) baud rate to (% style="color:green" %)**9600**(%%) to access to access serial console for LHT65N. The AT commands are disable by default and need to enter password (default:(% style="color:green" %)**123456**) (%%)to active it. Timeout to input AT Command is 5 min, after 5-minute, user need to input password again. User can use AT+DISAT command to disable AT command before timeout.
1360 1360  )))
... ... @@ -1663,7 +1663,59 @@
1663 1663  Finally, unplug the DuPont cable on port4, and then use the DuPont cable to short circuit port3 and port1 to reset the device.
1664 1664  
1665 1665  
1724 +== 6.6 Using USB-TYPE-C to connect to the computer using the AT command ==
1666 1666  
1726 +[[image:image-20220623110706-1.png]]
1727 +
1728 +
1729 +[[image:image-20220623112117-4.png||height="459" width="343"]]
1730 +
1731 +(((
1732 +In PC, User needs to set serial tool(such as [[**putty**>>https://www.chiark.greenend.org.uk/~~sgtatham/putty/latest.html]], SecureCRT) baud rate to (% style="color:green" %)**9600** (%%)to access to access serial console for LHT65N. The AT commands are disable by default and need to enter password (default:(% style="color:green" %)**123456**(% style="color:red" %))(%%) to active it. Timeout to input AT Command is 5 min, after 5-minute, user need to input password again. User can use AT+DISAT command to disable AT command before timeout.
1733 +)))
1734 +
1735 +
1736 +Input password and ATZ to activate LHT65N,As shown below:
1737 +
1738 +[[image:image-20220615154519-3.png||height="672" width="807"]]
1739 +
1740 +
1741 +== 6.6 How to use  USB-TYPE-C to connect PC to upgrade firmware? ==
1742 +
1743 +[[image:image-20220623110706-1.png]]
1744 +
1745 +(% style="color:blue" %)**Step1**(%%): Install TremoProgrammer  first.
1746 +
1747 +[[image:image-20220615170542-5.png]]
1748 +
1749 +
1750 +(% style="color:blue" %)**Step2**(%%):wiring method.(% style="display:none" %)
1751 +
1752 +(% _msthash="506146" _msttexthash="52173160" %)
1753 +First connect the four lines;
1754 +
1755 +(% _msthash="506146" _msttexthash="52173160" %)
1756 +[[image:image-20220623113959-5.png||height="528" width="397"]]
1757 +
1758 +(% _msthash="506146" _msttexthash="52173160" %)
1759 +Press and hold the start key to restart and enter  (% _mstvisible="1" %)bootlaod(%%) mode.
1760 +
1761 +(% style="color:blue" %)**Step3:**(%%)Select the device port to be connected, baud rate and bin file to be downloaded.
1762 +
1763 +[[image:image-20220615171334-6.png]]
1764 +
1765 +
1766 +Click the (% style="color:blue" %)**start**(%%) button to start the firmware upgrade.
1767 +
1768 +
1769 +When this interface appears, it indicates that the download has been completed.
1770 +
1771 +[[image:image-20220620160723-8.png]]
1772 +
1773 +
1774 +Finally,restart reset device again
1775 +
1776 +
1667 1667  = 7. Order Info =
1668 1668  
1669 1669  
image-20220623110706-1.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +689.7 KB
Content
image-20220623110723-2.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +501.5 KB
Content
image-20220623111949-3.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +1.6 MB
Content
image-20220623112117-4.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +513.9 KB
Content
image-20220623113959-5.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +834.2 KB
Content
image-20220628150112-1.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +220.3 KB
Content
image-20220628150542-2.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +45.6 KB
Content
image-20220628150648-3.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +8.3 KB
Content
image-20220628150714-4.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +7.1 KB
Content
image-20220628151005-5.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +7.3 KB
Content
image-20220628151056-6.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +8.2 KB
Content
image-20220628151143-7.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.Bei
Size
... ... @@ -1,0 +1,1 @@
1 +7.2 KB
Content