gpt4 book ai didi

python - 使用 SIM900 的 AT 命令接收短信和调用电话

转载 作者:行者123 更新时间:2023-11-28 18:19:49 25 4
gpt4 key购买 nike

我在让我的 python 代码正常工作时遇到了一些困难。我有 Rpi2 和 SIM900 模块连接。我可以调用电话、接听电话、发送短信,甚至可以接收短信。但是放在一起让我很头疼。我在谷歌上滚动了一遍又一遍,现在我看到即使结果总是一样的,所以我在 0 点上取得了进一步的进展。

所以我的议程是向 SimModule 发送短信。如果 SMS 从批准列表中的电话号码到达,Python 将读取传入的 SMS,并将包含特定代码,它将调用特定号码:

短信示例

RV -> make call to cell no: 49
RI -> make call to cell no: 48
MV -> make call to cell no: 47
MI -> make call to cell no: 46

到目前为止,我可以使用以下代码阅读短信

import serial
import time
import sys


class sim900(object):

def __init__(self):
self.open()

def open(self):
self.ser = serial.Serial('/dev/ttyAMA0', 115200, timeout=5)

def SendCommand(self,command, getline=True):
self.ser.write(command)
data = ''
if getline:
data=self.ReadLine()
return data

def ReadLine(self):
data = self.ser.readline()
# print data
return data

def GetAllSMS(self):
self.ser.flushInput()
self.ser.flushOutput()

command = 'AT+CMGL=\"ALL\"\r'#gets incoming sms that has not been read
print self.SendCommand(command,getline=True)
data = self.ser.readall()
print data
self.ser.close()

def Call49(self):
self.ser = serial.Serial('/dev/ttyAMA0', 115200, timeout=5)
self.ser.write('ATD49;\r')
time.sleep(1)
time.sleep(1)
self.ser.write(chr(26))
# responce = ser.read(50)
self.ser.close()
print "calling"

def Call48(self):
self.ser = serial.Serial('/dev/ttyAMA0', 115200, timeout=5)
self.ser.write('ATD48;\r')
time.sleep(1)
self.ser.write(chr(26))
# responce = ser.read(50)
self.ser.close()
print "calling"

h = sim900()
h.GetAllSMS()

我可以阅读短信(见下文)

AT+CMGL="ALL"
AT+CMGL="ALL"
+CMGL: 1,"REC READ","+30000000000","","17/08/27,23:28:51+08"
RV
+CMGL: 2,"REC READ","+30000000000","","17/08/28,00:34:12+08"
RI
OK

如果在 SMS“def GetAllSMS”电话号码 +30000000000 中将与将执行“def Call48”的文本 RV 一起存在,如果它是 RI 将执行“def Call47”,我现在如何添加功能

一些帮助将不胜感激。提前 Tnx。

最佳答案

正确解析调制解调器响应可能很棘手(例如,参见 this answer)。如果您要使用消息传递功能以及语音调用和 USSD 请求,您可能最终会重新创建 python-gsmmodem library :) 但是在解析 SMS 响应的特殊情况下,您可以使用此代码(改编自提到的 python-gsmmodem)。

import re

def GetAllSMS(self):

self.ser.flushInput()
self.ser.flushOutput()

result = self.SendCommand('AT+CMGL="ALL"\r\n')
msg_lines = []
msg_index = msg_status = number = msg_time = None

cmgl_re = re.compile('^\+CMGL: (\d+),"([^"]+)","([^"]+)",[^,]*,"([^"]+)"$')

# list of (number, time, text)
messages = []

for line in result:
cmgl_match = cmgl_re.match(line)
if cmgl_match:
# New message; save old one if applicable
if msg_index != None and len(msg_lines) > 0:
msg_text = '\n'.join(msg_lines)
msg_lines = []
messages.append((number, msg_time, msg_text))
msg_index, msg_status, number, msg_time = cmgl_match.groups()
msg_lines = []
else:
if line != 'OK':
msg_lines.append(line)

if msg_index != None and len(msg_lines) > 0:
msg_text = '\n'.join(msg_lines)
msg_lines = []
messages.append((number, msg_time, msg_text))

return messages

此函数将读取所有 SMS 并将它们作为元组列表返回:[("+30000000000", "17/08/28,00:34:12+08", "RI"), ( "+30000000000", "17/08/28,00:34:12+08", "RV")... 遍历该列表以检查数字是否有效并采取必要的措施:

for number, date, command in messages:
if number != "+30000000000":
continue
if command == 'RI':
self.call_1()
elif command == 'RV':
self.call_2()

关于python - 使用 SIM900 的 AT 命令接收短信和调用电话,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45917778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com