Changes for page wiki_test

Last modified by Mengting Qiu on 2024/09/05 17:35

From version 84.14
edited by Xiaoling
on 2023/09/11 15:26
Change comment: There is no comment for this version
To version 84.24
edited by Xiaoling
on 2023/09/11 16:01
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -192,7 +192,7 @@
192 192  Reset DDS20-NB and see if the BLUE LED is slowly blinking.
193 193  )))
194 194  
195 -[[image:image-20230809172509-1.png]]
195 +[[image:http://wiki.dragino.com/xwiki/bin/download/Main/User%20Manual%20for%20LoRaWAN%20End%20Nodes/DDS20-LB_LoRaWAN_Ultrasonic_Liquid_Level_Sensor_User_Manual/WebHome/image-20230809172509-1.png?rev=1.1||alt="image-20230809172509-1.png"]]
196 196  
197 197  (((
198 198  (% style="color:red" %)**Note :**(% style="color:red; display:none" %)** **
... ... @@ -212,6 +212,8 @@
212 212  
213 213  * Smart liquefied gas solution
214 214  
215 +
216 +
215 215  == 1.7 Precautions ==
216 216  
217 217  
... ... @@ -252,6 +252,8 @@
252 252  )))
253 253  |(% style="width:167px" %)Fast press ACT 5 times.|(% style="width:117px" %)Deactivate Device|(% style="width:225px" %)(% style="color:red" %)**Red led**(%%) will solid on for 5 seconds. Means device is in Deep Sleep Mode.
254 254  
257 +
258 +
255 255  == 1.10 BLE connection ==
256 256  
257 257  
... ... @@ -399,6 +399,8 @@
399 399  
400 400  * Json entry 1 ~~ 8 are the last 1 ~~ 8 sampling data as specify by (% style="color:#037691" %)**AT+NOUD=8 ** (%%)Command. Each entry includes (from left to right): Temperature, Humidity, Sampling time.
401 401  
406 +
407 +
402 402  === 2.2.2 HEX format Payload(Type~=0) ===
403 403  
404 404  
... ... @@ -467,9 +467,98 @@
467 467  (% style="color:#4472c4" %)**field1=27.9&field2=49.9&field3=3.23&field4=28**
468 468  
469 469  
470 -== 2.3 Test Uplink and Change Update Interval ==
476 +== 2.3  Uplink Payload ==
471 471  
472 472  
479 +(((
480 +DDS20-NB will uplink payload via LoRaWAN with below payload format: 
481 +)))
482 +
483 +(((
484 +Uplink payload includes in total 8 bytes.
485 +)))
486 +
487 +(% border="1" cellspacing="5" style="background-color:#f2f2f2; width:510px" %)
488 +|=(% style="width: 95px; background-color:#4F81BD;color:white" %)Size(bytes)|=(% style="width: 61px; background-color:#4F81BD;color:white" %)2|=(% style="background-color:#4F81BD;color:white" %)2|=(% style="background-color:#4F81BD;color:white" %)1|=(% style="background-color:#4F81BD;color:white" %)2|=(% style="background-color:#4F81BD;color:white" %)1
489 +|(% style="width:95px" %)Value|(% style="width:61px" %)[[BAT>>||anchor="H2.3.1A0BatteryInfo"]]|(((
490 +[[Distance>>||anchor="H2.3.2A0Distance"]]
491 +(unit: mm)
492 +)))|[[Digital Interrupt (Optional)>>||anchor="H2.3.3A0InterruptPin"]]|(((
493 +[[Temperature (Optional)>>||anchor="H2.3.4A0DS18B20Temperaturesensor"]]
494 +)))|[[Sensor Flag>>||anchor="H2.3.5A0SensorFlag"]]
495 +
496 +[[image:http://wiki.dragino.com/xwiki/bin/download/Main/User%20Manual%20for%20LoRaWAN%20End%20Nodes/DDS20-LB_LoRaWAN_Ultrasonic_Liquid_Level_Sensor_User_Manual/WebHome/%E5%BE%AE%E4%BF%A1%E6%88%AA%E5%9B%BE_20230702135733.png?width=964&height=215&rev=1.1||alt="微信截图_20230702135733.png"]]
497 +
498 +
499 +=== 2.3.1  Battery Info ===
500 +
501 +
502 +Check the battery voltage for DDS20-NB.
503 +
504 +Ex1: 0x0B45 = 2885mV
505 +
506 +Ex2: 0x0B49 = 2889mV
507 +
508 +
509 +=== 2.3.2  Distance ===
510 +
511 +
512 +(((
513 +Get the distance. Flat object range 20mm - 2000mm.
514 +)))
515 +
516 +(((
517 +For example, if the data you get from the register is **0x06 0x05**, the distance between the sensor and the measured object is(% style="color:#4472c4" %)** **
518 +
519 +(% style="color:blue" %)**0605(H) = 1541 (D) = 1541 mm.**
520 +)))
521 +
522 +* If the sensor value is 0x0000, it means system doesn't detect ultrasonic sensor.
523 +
524 +* If the sensor value lower than 0x0014 (20mm), the sensor value will be invalid.
525 +
526 +
527 +
528 +=== 2.3.3  Interrupt Pin ===
529 +
530 +
531 +This data field shows if this packet is generated by interrupt or not.
532 +
533 +**Example:**
534 +
535 +0x00: Normal uplink packet.
536 +
537 +0x01: Interrupt Uplink Packet.
538 +
539 +
540 +=== 2.3.4  DS18B20 Temperature sensor ===
541 +
542 +
543 +This is optional, user can connect external DS18B20 sensor to the +3.3v, 1-wire and GND pin . and this field will report temperature.
544 +
545 +**Example**:
546 +
547 +If payload is: 0105H:  (0105 & FC00 == 0), temp = 0105H /10 = 26.1 degree
548 +
549 +If payload is: FF3FH :  (FF3F & FC00 == 1) , temp = (FF3FH - 65536)/10 = -19.3 degrees.
550 +
551 +
552 +=== 2.3.5  Sensor Flag ===
553 +
554 +
555 +(((
556 +0x01: Detect Ultrasonic Sensor
557 +)))
558 +
559 +(((
560 +0x00: No Ultrasonic Sensor
561 +
562 +
563 +)))
564 +
565 +== 2.4 Test Uplink and Change Update Interval ==
566 +
567 +
473 473  By default, Sensor will send uplinks (% style="color:blue" %)**every 2 hours**(%%) & AT+NOUD=8
474 474  
475 475  User can use below commands to change the (% style="color:blue" %)**uplink interval**.
... ... @@ -479,7 +479,7 @@
479 479  User can also push the button for more than 1 seconds to activate an uplink.
480 480  
481 481  
482 -== 2.4 Multi-Samplings and One uplink ==
577 +== 2.5 Multi-Samplings and One uplink ==
483 483  
484 484  
485 485  To save battery life, DDS20-NB will sample temperature & humidity data every 15 minutes and send one uplink every 2 hours. So each uplink it will include 8 stored data + 1 real-time data. They are defined by:
... ... @@ -493,7 +493,7 @@
493 493  [[image:1692424376354-959.png]]
494 494  
495 495  
496 -== 2.5 Trggier an uplink by external interrupt ==
591 +== 2.6 Trggier an uplink by external interrupt ==
497 497  
498 498  
499 499  DDS20-NB has an external trigger interrupt function. Users can use the PB15 pin to trigger the upload of data packets.
... ... @@ -510,6 +510,8 @@
510 510  
511 511  * (% style="color:#037691" %)**AT+INTMOD=3  **(%%) ~/~/ Trigger by rising edge
512 512  
608 +
609 +
513 513  = 3. Configure DDS20-NB =
514 514  
515 515  == 3.1 Configure Methods ==
... ... @@ -521,6 +521,8 @@
521 521  
522 522  * AT Command via UART Connection : See [[UART Connection>>http://wiki.dragino.com/xwiki/bin/view/Main/UART%20Access%20for%20LoRa%20ST%20v4%20base%20model/#H2.3UARTConnectionforSN50v3basemotherboard]].
523 523  
621 +
622 +
524 524  == 3.2 AT Commands Set ==
525 525  
526 526  
... ... @@ -618,7 +618,7 @@
618 618  
619 619  * Fix bugs.
620 620  
621 -Firmware and changelog can be downloaded from : **[[Firmware download link>>https://www.dropbox.com/sh/fhb3uyl4gt6clru/AAAiZVTFcxrfE1JOOyfcgO9ha?dl=0]]**
720 +Firmware and changelog can be downloaded from : **[[Firmware download link>>https://www.dropbox.com/sh/nyzeu0lf0amcaek/AAC6UZrqyTcAyJgXOH7l9F9Ka?dl=0]]**
622 622  
623 623  Methods to Update Firmware:
624 624  
... ... @@ -626,6 +626,8 @@
626 626  
627 627  * 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]]**.
628 628  
728 +
729 +
629 629  = 6. FAQ =
630 630  
631 631  == 6.1 How can I access t BC660K-GL AT Commands? ==
... ... @@ -636,9 +636,22 @@
636 636  [[See BC660K-GL AT Command set>>url:https://www.dropbox.com/sh/5f6ssda5fum8rvs/AABT68l8ZzWOvZ5eg2qwOoFda?dl=0]]
637 637  
638 638  
639 -= 7. Order Info =
740 += 7.  Trouble Shooting =
640 640  
742 +== 7.1  Why i always see 0x0000 or 0 for the distance value? ==
641 641  
744 +
745 +(((
746 +DDS20-NB has a strict [[**installation requirement**>>||anchor="H1.5A0InstallDDS20-NB"]]. Please make sure the installation method exactly follows up with the installation requirement. Otherwise, the reading might be always 0x00.
747 +
748 +If you have followed the instruction requirement exactly but still see the 0x00 reading issue, please. please double-check the decoder, you can check the raw payload to verify.
749 +
750 +
751 +)))
752 +
753 += 8. Order Info =
754 +
755 +
642 642  Part Number: (% style="color:blue" %)**DDS20-NB-XX**
643 643  
644 644  (% style="color:red" %)**XX**(%%):
... ... @@ -650,7 +650,7 @@
650 650  (% style="color:#037691" %)**1NCE SIM Card NB-IoT network coverage**(%%): Austria, Belgium, Bulgaria, Croatia, Czech Republic, Denmark, Finland, Germany, Great Britain, Greece, Hungary, Ireland, Italy, Latvia, Malta, Netherlands, Norway, Puerto Rico, Russia, Slovak , Republic, Slovenia, Spain, Sweden, Switzerland, Taiwan, USA, US Virgin Islands
651 651  
652 652  
653 -= 8. ​Packing Info =
767 += 9. ​Packing Info =
654 654  
655 655  
656 656  (% style="color:#037691" %)**Package Includes**:
... ... @@ -669,9 +669,11 @@
669 669  
670 670  * Weight / pcs : 180g
671 671  
672 -= 9. Support =
673 673  
674 674  
788 += 10. Support =
789 +
790 +
675 675  * Support is provided Monday to Friday, from 09:00 to 18:00 GMT+8. Due to different timezones we cannot offer live support. However, your questions will be answered as soon as possible in the before-mentioned schedule.
676 676  
677 677  * Provide as much information as possible regarding your enquiry (product models, accurately describe your problem and steps to replicate it etc) and send a mail to [[Support@dragino.cc>>mailto:Support@dragino.cc]].