Last modified by Karry Zhuang on 2025/07/03 11:59

From version 144.1
edited by Karry Zhuang
on 2024/05/06 16:54
Change comment: Uploaded new attachment "1714985699187-406.png", version {1}
To version 147.1
edited by Karry Zhuang
on 2024/05/06 17:37
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -498,8 +498,164 @@
498 498  
499 499  Select the corresponding baud rate and serial port number through the serial port tool, select HEX display and HEX send, and continuously receive data from the AIS Sensor
500 500  
501 +[[image:1714985699187-406.png||height="277" width="536"]]
501 501  
502 502  In the serial port to send data C0 5A 00 00 00 00 04, and then send C0 5A 00 00 00 00 09, AIS Sensor will send a real-time image of the data packet, and then stop sending. Start with FFD8 and put it in TXT file
503 503  
505 +[[image:1714985711524-251.png||height="140" width="526"]]
504 504  
505 505  Then follow the instructions in 3.2.1.6 to get the image from AIS Sensor.
508 +
509 +
510 += 4. Configure AIS Sensor using AT commands =
511 +
512 +== 4.1 Configure Methods ==
513 +
514 +
515 +SN50v3-LB/LS supports below configure method:
516 +
517 +* AT Command via Bluetooth Connection (**Recommended**): [[BLE Configure Instruction>>http://wiki.dragino.com/xwiki/bin/view/Main/BLE%20Bluetooth%20Remote%20Configure/]].
518 +* 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]].
519 +* LoRaWAN Downlink.  Instruction for different platforms: See [[IoT LoRaWAN Server>>http://wiki.dragino.com/xwiki/bin/view/Main/]] section.
520 +
521 +== 4.2 General Commands ==
522 +
523 +
524 +These commands are to configure:
525 +
526 +* General system settings like: uplink interval.
527 +* LoRaWAN protocol & radio related command.
528 +
529 +They are same for all Dragino Devices which support DLWS-005 LoRaWAN Stack. These commands can be found on the wiki:
530 +
531 +[[http:~~/~~/wiki.dragino.com/xwiki/bin/view/Main/End%20Device%20AT%20Commands%20and%20Downlink%20Command/>>http://wiki.dragino.com/xwiki/bin/view/Main/End%20Device%20AT%20Commands%20and%20Downlink%20Command/]]
532 +
533 +== 4.3 System Management Commands ==
534 +
535 +=== 4.3.1 Change Uplink Interval ===
536 +
537 +
538 +Feature: Change LoRaWAN End Node Transmit Interval.
539 +
540 +
541 +(% style="color:blue" %)**AT Command: AT+TDC**
542 +
543 +(% border="1" cellspacing="4" style="background-color:#f2f2f2; width:727.222px" %)
544 +|(% style="background-color:#4f81bd; color:white; width:165px" %)**Command Example**|(% style="background-color:#4f81bd; color:white; width:227px" %)**Function**|(% style="background-color:#4f81bd; color:white; width:329px" %)**Response**
545 +|(% style="width:165px" %)AT+TDC=?|(% style="width:227px" %)Show current transmit Interval|(% style="width:329px" %)30000(((
546 +OK
547 +
548 +the interval is 30000ms = 30s
549 +)))
550 +|(% style="width:165px" %)AT+TDC=60000|(% style="width:227px" %)Set Transmit Interval|(% style="width:329px" %)OK(((
551 +Set transmit interval to 60000ms = 60 seconds
552 +)))
553 +
554 +(((
555 +(% style="color:blue" %)**Downlink Command: 0x01**
556 +
557 +Format: Command Code (0x01) followed by 3 bytes time value.
558 +)))
559 +
560 +(((
561 +If the downlink payload=0100003C, it means set the END Node's Transmit Interval to 0x00003C=60(S), while type code is 01.
562 +)))
563 +
564 +* **Example 1**: Downlink Payload:** 0100001E**  ~/~/ Set Transmit Interval (TDC) = 30 seconds
565 +
566 +* **Example 2**: Downlink Payload:** 0100003C**  ~/~/ Set Transmit Interval (TDC) = 60 seconds
567 +
568 +(% style="display:none" %) (%%)
569 +
570 +== 4.3.2 Request the server to send an ACK ==
571 +
572 +
573 +(% style="color:blue" %)**AT Command: AT+PNACKMD**
574 +
575 +(% border="1" cellspacing="4" style="background-color:#f2f2f2; width:889px" %)
576 +|(% style="background-color:#4f81bd; color:white; width:160px" %)**Command Example**|(% style="background-color:#4f81bd; color:white; width:627px" %)**Function**|(% style="background-color:#4f81bd; color:white; width:100px" %)**Response**
577 +|(% style="width:160px" %)AT+PNACKMD=1|(% style="width:627px" %)If the node uploads the ACK as confirm, it will request the server to send an ACK. If the server ack is not received, the node will upload the packets that have not received the ACK the next time it receives the ACK|(% style="width:100px" %)1(((
578 +OK
579 +)))
580 +|(% style="width:160px" %)AT+PNACKMD=0|(% style="width:627px" %)off request the server to send an ACK|(% style="width:100px" %)(((
581 +0
582 +OK
583 +)))
584 +
585 +(% style="display:none" %) (%%) (% style="color:blue" %)**Downlink Command: 0x34**
586 +
587 +0X34 01  ~/~/Same As AT+PNACKMD=1
588 +
589 +0x34 00  ~/~/Same As AT+PNACKMD=0
590 +
591 +
592 +=== 4.3.3 Set Interrupt Mode ===
593 +
594 +
595 +Feature, Set Interrupt mode for GPIO_EXIT.
596 +
597 +(% style="color:blue" %)**AT Command: AT+INTMOD1,AT+INTMOD2,AT+INTMOD3**
598 +
599 +(% border="1" cellspacing="4" style="background-color:#f2f2f2; width:510px" %)
600 +|=(% style="width: 155px;background-color:#4F81BD;color:white" %)**Command Example**|=(% style="width: 197px;background-color:#4F81BD;color:white" %)**Function**|=(% style="width: 158px;background-color:#4F81BD;color:white" %)**Response**
601 +|(% style="width:154px" %)AT+INTMOD1=?|(% style="width:196px" %)Show current interrupt mode|(% style="width:157px" %)(((
602 +0
603 +OK
604 +the mode is 0 =Disable Interrupt
605 +)))
606 +|(% style="width:154px" %)AT+INTMOD1=2|(% style="width:196px" %)(((
607 +Set Transmit Interval
608 +0. (Disable Interrupt),
609 +~1. (Trigger by rising and falling edge)
610 +2. (Trigger by falling edge)
611 +3. (Trigger by rising edge)
612 +)))|(% style="width:157px" %)OK
613 +|(% style="width:154px" %)AT+INTMOD2=3|(% style="width:196px" %)Set Transmit Interval
614 +0. (Disable Interrupt),
615 +~1. (Trigger by rising and falling edge)
616 +2. (Trigger by falling edge)
617 +3. (Trigger by rising edge)|(% style="width:157px" %)OK
618 +
619 +(% style="color:blue" %)**Downlink Command: 0x06**
620 +
621 +Format: Command Code (0x06) followed by 3 bytes.
622 +
623 +This means that the interrupt mode of the end node is set to 0x000003=3 (rising edge trigger), and the type code is 06.
624 +
625 +* Example 1: Downlink Payload: 06000000  **~-~-->**  AT+INTMOD1=0
626 +* Example 2: Downlink Payload: 06000003  **~-~-->**  AT+INTMOD1=3
627 +* Example 3: Downlink Payload: 06000102  **~-~-->**  AT+INTMOD2=2
628 +
629 +(% class="wikigeneratedid" %)
630 +=== ===
631 +
632 +=== 4.3.4 Clock logging (Since firmware version v1.2.1) ===
633 +
634 +
635 +Sometimes when we deploy lots of end nodes in field. We want all sensors sample data at the same time, and upload these data together for analyze. In such case, we can use clock loging feature.
636 +
637 +We can use this command to set the start time of data recording and the time interval to meet the requirements of the specific collection time of data.
638 +
639 +* (% style="color:blue" %)**AT Command:**(%%)** (% style="color:#037691" %)AT+CLOCKLOG=a,b,c,d(%%)**
640 +
641 +(% style="color:#037691" %)**a: **(%%)**0:** Disable Clock logging.  ** 1: **Enable Clock Logging
642 +
643 +(% style="color:#037691" %)**b: **(%%)Specify First sampling start second: range **(0 ~~ 3599, 65535)   ** ~/~/ (% style="color:red" %)**Note:**(%%)** **If parameter b is set to 65535, the log period starts after the node accesses the network and sends packets.
644 +
645 +(% style="color:#037691" %)**c: **(%%)Specify the sampling interval: range **(0 ~~ 255 minutes)**
646 +
647 +(% style="color:#037691" %)**d:**(%%)How many entries should be uplink on every TDC **(max 32)**
648 +
649 +[[image:http://wiki.dragino.com/xwiki/bin/download/Main/User%20Manual%20for%20LoRaWAN%20End%20Nodes/SPH01-NB_NB-IoT_Soil_pH_Sensor_User_Manual/WebHome/image-20240315141254-1.png?rev=1.1||alt="image-20240315141254-1.png"]]
650 +
651 +**Example:**
652 +
653 +**AT+CLOCKLOG=1,65535,1,5**
654 +
655 +After the node sends the first packet, data is recorded to the memory at intervals of 1 minute. For each TDC uplink, the uplink load will include: battery information + the last 5 memory records (payload + timestamp).
656 +
657 +(% class="wikigeneratedid" %)
658 +[[image:http://wiki.dragino.com/xwiki/bin/download/Main/User%20Manual%20for%20LoRaWAN%20End%20Nodes/TS01-NB_NB-IoT_Tilting_Sensor_User_Manual/WebHome/image-20240316163501-1.png?width=1064&height=517&rev=1.1||alt="image-20240316163501-1.png"]]
659 +
660 +(% class="wikigeneratedid" %)
661 +(% style="color:red" %)**Note: Users need to synchronize the server time before configuring this command. If the server time is not synchronized before this command is configured, the command takes effect only after the node is reset.**
1714985711524-251.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.karry
Size
... ... @@ -1,0 +1,1 @@
1 +204.6 KB
Content