Last modified by Xiaoling on 2025/06/10 09:17

From version 46.3
edited by Xiaoling
on 2023/08/16 10:00
Change comment: There is no comment for this version
To version 47.1
edited by Bei Jinggeng
on 2023/10/31 17:15
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
... ... @@ -187,34 +187,35 @@
187 187  
188 188  (% style="color:blue" %)**Frequency Band**:
189 189  
190 -*0x01: EU868
190 +0x01: EU868
191 191  
192 -*0x02: US915
192 +0x02: US915
193 193  
194 -*0x03: IN865
194 +0x03: IN865
195 195  
196 -*0x04: AU915
196 +0x04: AU915
197 197  
198 -*0x05: KZ865
198 +0x05: KZ865
199 199  
200 -*0x06: RU864
200 +0x06: RU864
201 201  
202 -*0x07: AS923
202 +0x07: AS923
203 203  
204 -*0x08: AS923-1
204 +0x08: AS923-1
205 205  
206 -*0x09: AS923-2
206 +0x09: AS923-2
207 207  
208 -*0x0a: AS923-3
208 +0x0a: AS923-3
209 209  
210 -*0x0b: CN470
210 +0x0b: CN470
211 211  
212 -*0x0c: EU433
212 +0x0c: EU433
213 213  
214 -*0x0d: KR920
214 +0x0d: KR920
215 215  
216 -*0x0e: MA869
216 +0x0e: MA869
217 217  
218 +
218 218  (% style="color:blue" %)**Sub-Band**:
219 219  
220 220  AU915 and US915: value 0x00 ~~ 0x08
... ... @@ -223,6 +223,7 @@
223 223  
224 224  Other Bands: Always 0x00
225 225  
227 +
226 226  (% style="color:blue" %)**Battery Info**:
227 227  
228 228  Check the battery voltage.
... ... @@ -373,6 +373,7 @@
373 373  0x00 E5 09 : Total detect 58633 activity since end node start.
374 374  
375 375  
378 +
376 376  == 2.6 Show data on Datacake ==
377 377  
378 378  
... ... @@ -402,10 +402,195 @@
402 402  
403 403  [[image:Main.User Manual for LoRaWAN End Nodes.LHT65N-E5 LoRaWAN Temperature_Humidity & Illuminance Sensor User Manual.WebHome@image-20221224161957-6.png||height="306" width="852"]]
404 404  
408 +== 2.7 Alarm Mode & Feature "Multi sampling, one uplink" ==
405 405  
406 -== 2.7 LED Indicator ==
407 407  
411 +(((
412 +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.
413 +)))
408 408  
415 +(((
416 +(% style="color:red" %)**Note: alarm mode adds a little power consumption, and we recommend extending the normal read time when this feature is enabled.**
417 +
418 +
419 +=== 2.7.1 ALARM MODE ( Since v1.3.1 firmware) ===
420 +
421 +
422 +**Internal GXHT30 temperature alarm(Acquisition time: fixed at one minute)**
423 +
424 +(((
425 +(% class="box infomessage" %)
426 +(((
427 +**AT+WMOD=3**:  Enable/disable alarm mode. (0: Disabled, 1: Enabled Temperature Alarm for onboard temperature sensor)
428 +
429 +**AT+CITEMP=1**:  The interval between checking the alarm temperature. (In minutes)
430 +
431 +**AT+ARTEMP**:  Gets or sets the alarm range of the internal temperature sensor
432 +
433 +(% _mstmutation="1" %)**AT+ARTEMP=? **(%%):  Gets the alarm range of the internal temperature sensor(% style="display:none" %)
434 +
435 +**AT+ARTEMP=45,105**:  Set the internal temperature sensor alarm range from 45 to 105.
436 +
437 +**AT+LEDALARM=1** :       Enable LED visual Alarm.
438 +)))
439 +)))
440 +
441 +(% style="color:#4f81bd" %)**Downlink Command:**
442 +
443 +AT+WMOD=1:  A501  , AT+WMOD=0 :  A600
444 +
445 +AT+CITEMP=1 : A60001
446 +
447 +AT+ARTEMP=1,60  :  A70001003C
448 +
449 +AT+ARTEMP=-16,60 :  A7FFF0003C
450 +
451 +AT+LEDALARM=1  :  3601
452 +
453 +
454 +(% style="color:#4f81bd" %)**Downlink Command: AAXXXXXXXXXXXXXX**
455 +
456 +Total bytes: 8 bytes
457 +
458 +**Example: **AA0100010001003C
459 +
460 +WMOD=01
461 +
462 +CITEMP=0001
463 +
464 +TEMPlow=0001
465 +
466 +TEMPhigh=003C
467 +
468 +
469 +**DS18B20 and TMP117 Threshold Alarm**
470 +
471 +**~ AT+WMOD=1,60,-10,20**
472 +
473 +(% style="color:#4f81bd" %)**Downlink Command:**
474 +
475 +**Example: **A5013CFC180014
476 +
477 +MOD=01
478 +
479 +CITEMP=3C(S)
480 +
481 +TEMPlow=FC18
482 +
483 +TEMPhigh=0014
484 +
485 +
486 +**Fluctuation alarm for DS18B20 and TMP117(Acquisition time: minimum 1s)**
487 +
488 +**AT+WMOD=2,60,5** 
489 +
490 +(% style="color:#4f81bd" %)**Downlink Command:**
491 +
492 +**Example: **A5023C05
493 +
494 +MOD=02
495 +
496 +CITEMP=3C(S)
497 +
498 +temperature fluctuation=05
499 +
500 +
501 +**Sampling multiple times and uplink together**
502 +
503 +**AT+WMOD=3,1,60,20,-16,32,1**   
504 +
505 +Explain:
506 +
507 +* (% style="color:#037691" %)**parameter1: **(%%)Set Working Mode to **Mode 3**
508 +* (% style="color:#037691" %)**parameter2:**(%%) Set the temperature sampling mode to** 1**(1:DS18B20;2:TMP117;3:** **Internal GXHT30).
509 +* (% style="color:#037691" %)**parameter3: **(%%)Sampling Interval is **60**s.
510 +* (% style="color:#037691" %)**parameter4: **(%%)When there is **20** sampling dats, Device will send these data via one uplink. (max value is 60, means max 60 sampling in one uplink)
511 +* (% style="color:#037691" %)**parameter5 & parameter6: **(%%)Temperature alarm range is **-16** to **32**°C,
512 +* (% style="color:#037691" %)**parameter7:**(%%) 1 to enable temperature alarm, **0** to disable the temperature alarm. If alarm is enabled, a data will be sent immediately  if temperate exceeds the Alarm range.
513 +
514 +(% style="color:#4f81bd" %)**Downlink Command:**
515 +
516 +**Example: **A50301003C14FFF0002001
517 +
518 +MOD=03
519 +
520 +TEMP=DS18B20
521 +
522 +CITEMP=003C(S)
523 +
524 +Total number of acquisitions=14
525 +
526 +TEMPlow=FFF0
527 +
528 +TEMPhigh=0020
529 +
530 +ARTEMP=01
531 +
532 +
533 +**Uplink payload( Fport=3)**
534 +
535 +**Example: CBEA**01**0992**//0A41//**09C4**
536 +
537 +BatV=CBEA
538 +
539 +TEMP=DS18B20
540 +
541 +Temp1=0992  ~/~/ 24.50℃
542 +
543 +Temp2=0A41  ~/~/ 26.25℃
544 +
545 +Temp3=09C4  ~/~/ 25.00℃
546 +
547 +(% style="color:red" %)**Note: This uplink will automatically select the appropriate DR according to the data length**
548 +
549 +(% style="color:red" %)** In this mode, the temperature resolution of ds18b20 is 0.25℃ to save power consumption**
550 +)))
551 +
552 +
553 +=== 2.7.2 ALARM MODE ( Before v1.3.1 firmware) ===
554 +
555 +
556 +(% class="box infomessage" %)
557 +(((
558 +(((
559 +**AT+WMOD=1**:  Enable/disable alarm mode. (0: Disabled, 1: Enabled Temperature Alarm for onboard temperature sensor)
560 +)))
561 +
562 +(((
563 +**AT+CITEMP=1**:  The interval between checking the alarm temperature. (In minutes)
564 +)))
565 +
566 +(((
567 +**AT+ARTEMP**:  Gets or sets the alarm range of the internal temperature sensor
568 +)))
569 +
570 +(((
571 +(% _mstmutation="1" %)**AT+ARTEMP=? **(%%):  Gets the alarm range of the internal temperature sensor(% style="display:none" %)
572 +)))
573 +
574 +(((
575 +**AT+ARTEMP=45,105**:  Set the internal temperature sensor alarm range from 45 to 105.
576 +)))
577 +)))
578 +
579 +(% style="color:#4f81bd" %)**Downlink Command: AAXXXXXXXXXXXXXX**
580 +
581 +Total bytes: 8 bytes
582 +
583 +**Example:**AA0100010001003C
584 +
585 +WMOD=01
586 +
587 +CITEMP=0001
588 +
589 +TEMPlow=0001
590 +
591 +TEMPhigh=003C
592 +
593 +
594 +== 2.8 LED Indicator ==
595 +
596 +
409 409  The LHT65N-PIR has a triple color LED which for easy showing different stage .
410 410  
411 411  While user press ACT button, the LED will work as per LED status with ACT button.
... ... @@ -417,7 +417,7 @@
417 417  * (% style="color:red" %)**RED LED**(%%) when external sensor is not connected
418 418  * For each success downlink, the (% style="color:purple" %)**PURPLE LED**(%%) will blink once
419 419  
420 -== 2.8 installation ==
608 +== 2.9 installation ==
421 421  
422 422  
423 423  ~1. Don't install LHT65N-PIR outdoor or place where will get wet.
... ... @@ -496,11 +496,11 @@
496 496  
497 497  Feature: Change LoRaWAN End Node Transmit Interval.
498 498  
499 -(% style="color:#4f81bd" %)**AT Command: AT+TDC**
687 +(% style="color:#4f81bd" %)**AT Command: **
500 500  
501 501  (% border="1" cellspacing="5" style="background-color:#f2f2f2; width:501px" %)
502 502  |(% style="background-color:#d9e2f3; color:#0070c0; width:155px" %)**Command Example**|(% style="background-color:#d9e2f3; color:#0070c0; width:166px" %)**Function**|(% style="background-color:#d9e2f3; color:#0070c0; width:180px" %)**Response**
503 -|(% style="width:155px" %)AT+TDC?|(% style="width:162px" %)Show current transmit Interval|(% style="width:177px" %)30000 OK the interval is 30000ms = 30s
691 +|(% style="width:155px" %)AT+TDC=?|(% style="width:162px" %)Show current transmit Interval|(% style="width:177px" %)30000 OK the interval is 30000ms = 30s
504 504  |(% style="width:155px" %)AT+TDC=60000|(% style="width:162px" %)Set Transmit Interval|(% style="width:177px" %)OK Set transmit interval to 60000ms = 60 seconds
505 505  
506 506  (% style="color:#4f81bd" %)**Downlink Payload: 0x01**
... ... @@ -528,7 +528,7 @@
528 528  
529 529  Feature: Set device password, max 9 digits
530 530  
531 -(% style="color:#4f81bd" %)**AT Command: AT+PWORD**
719 +(% style="color:#4f81bd" %)**AT Command: **
532 532  
533 533  (% border="1" cellspacing="5" style="background-color:#f2f2f2; width:372px" %)
534 534  |(% style="background-color:#d9e2f3; color:#0070c0; width:155px" %)**Command Example**|(% style="background-color:#d9e2f3; color:#0070c0; width:128px" %)**Function**|(% style="background-color:#d9e2f3; color:#0070c0; width:89px" %)**Response**
... ... @@ -587,12 +587,9 @@
587 587  
588 588  When followed by 3 bytes, the first byte is 01, and the second and third bytes are Calm Down Time.
589 589  
590 -* (% style="color:#037691" %)**A1 00  (%%) ==>  AT+UOA=0     **
591 -* (% style="color:#037691" %)**A1 01 00 02  (%%) ==>  AT+UOA=1,2**
778 +* (% style="color:#037691" %)**A1 00    **(%%)** ==>  AT+UOA=0     **
779 +* (% style="color:#037691" %)**A1 01 00 02  **(%%)** ==>  AT+UOA=1,2**
592 592  
593 -
594 -
595 -
596 596  = 5. Battery & Power Consumption =
597 597  
598 598  
... ... @@ -617,9 +617,6 @@
617 617  * (Recommanded way) OTA firmware update via wireless: [[http:~~/~~/wiki.dragino.com/xwiki/bin/view/Main/Firmware%20OTA%20Update%20for%20Sensors/>>url:http://wiki.dragino.com/xwiki/bin/view/Main/Firmware%20OTA%20Update%20for%20Sensors/]]
618 618  * Update through UART TTL interface. **[[Instruction>>url:http://wiki.dragino.com/xwiki/bin/view/Main/UART%20Access%20for%20LoRa%20ST%20v4%20base%20model/#H1.LoRaSTv4baseHardware]]**.
619 619  
620 -
621 -
622 -
623 623  = 7. FAQ =
624 624  
625 625  == 7.1 How to use AT Command? ==
... ... @@ -631,7 +631,6 @@
631 631  [[image:Main.User Manual for LoRaWAN End Nodes.LHT65N-E5 LoRaWAN Temperature_Humidity & Illuminance Sensor User Manual.WebHome@image-20220615153355-1.png||_mstalt="430222"]]
632 632  
633 633  
634 -
635 635  [[image:Main.User Manual for LoRaWAN End Nodes.LHT65N-E5 LoRaWAN Temperature_Humidity & Illuminance Sensor User Manual.WebHome@1655802313617-381.png||_mstalt="293917"]]
636 636  
637 637  
... ... @@ -692,10 +692,12 @@
692 692  
693 693  [[image:Main.User Manual for LoRaWAN End Nodes.LHT65N-E5 LoRaWAN Temperature_Humidity & Illuminance Sensor User Manual.WebHome@image-20220615153355-1.png||_mstalt="430222"]]
694 694  
876 +
695 695  (% style="color:blue" %)**Step1**(%%): Install TremoProgrammer  first.
696 696  
697 697  [[image:Main.User Manual for LoRaWAN End Nodes.LHT65N-E5 LoRaWAN Temperature_Humidity & Illuminance Sensor User Manual.WebHome@image-20220615170542-5.png||_mstalt="430638"]]
698 698  
881 +
699 699  (% _mstmutation="1" style="color:blue" %)**Step2**(%%):wiring method.(% style="display:none" %)
700 700  
701 701  First connect the four lines;(% style="display:none" %)
... ... @@ -708,7 +708,6 @@
708 708  [[image:Main.User Manual for LoRaWAN End Nodes.LHT65N-E5 LoRaWAN Temperature_Humidity & Illuminance Sensor User Manual.WebHome@image-20220621170938-2.png||_mstalt="431704"]]
709 709  
710 710  
711 -
712 712  (% style="color:blue" %)**Step3:**(%%)Select the device port to be connected, baud rate and bin file to be downloaded.
713 713  
714 714  [[image:Main.User Manual for LoRaWAN End Nodes.LHT65N-E5 LoRaWAN Temperature_Humidity & Illuminance Sensor User Manual.WebHome@image-20220615171334-6.png||_mstalt="431028"]]
... ... @@ -724,8 +724,6 @@
724 724  
725 725  Finally, unplug the DuPont cable on port4, and then use the DuPont cable to short circuit port3 and port1 to reset the device.
726 726  
727 -
728 -
729 729  [[image:Main.User Manual for LoRaWAN End Nodes.LHT65N-E5 LoRaWAN Temperature_Humidity & Illuminance Sensor User Manual.WebHome@image-20220615154519-3.png||_mstalt="431925" height="672" width="807"]]
730 730  
731 731