Lesson33- how to debug KC868-A8S GSM module using AT command - Printable Version +- Smart Home Automation Forum (https://www.kincony.com/forum) +-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=1) +--- Forum: KC868-A series and Uair Smart Controller (https://www.kincony.com/forum/forumdisplay.php?fid=6) +--- Thread: Lesson33- how to debug KC868-A8S GSM module using AT command (/showthread.php?tid=2000) |
Lesson33- how to debug KC868-A8S GSM module using AT command - admin - 06-25-2022 1. Test AT 2. make a CALL ATD13100000000; 3. receive a CALL RING display receive information ATA Answer the phone AT+CHUP Hang up 4. receive a SMS +CMTI: "SM",1 display receive information AT+CMGR=1 read No.1 SMS AT+CMGL="ALL" read all SMS AT+CMGD=1 delete No.1 SMS AT+CMGD=1,4 delete all SMS 5. send a SMS AT+CMGF=1 set SMS mode=TEXT AT+CMGS="phone number" > this is a text sms from KinCony send Ctrl+Z or HEX (0x1A) arduino IDE source code for GSM serial port debug: AT-debug.zip (Size: 282 bytes / Downloads: 269) SIM7500_SIM7600 Series_AT_Command_Manual _V1.10.pdf (Size: 4.53 MB / Downloads: 372) RE: Lesson33- how to debug KC868-A8S GSM module using AT command - admin - 07-14-2022 HardwareSerial.cpp define serial port pins: #ifndef RX2 #define RX2 15 #endif #ifndef TX2 #define TX2 13 #endif RE: Lesson33- how to debug KC868-A8S GSM module using AT command - alexanderhez - 12-10-2022 (07-14-2022, 02:46 AM)admin Wrote: HardwareSerial.cpp define serial port pins: hello, thank you for help ous. please if can explain or make code for receive text message +CMTI: "SM",1 display receive information AT+CMGR=1 read No.1 SMS AT+CMGL="ALL" read all SMS AT+CMGD=1 delete No.1 SMS AT+CMGD=1,4 delete all SMS RE: Lesson33- how to debug KC868-A8S GSM module using AT command - admin - 12-11-2022 here are many demo code for SMS recieve message: https://www.kincony.com/forum/forumdisplay.php?fid=24 |