2017-08-28 113 views
1

我在使Python代碼工作時遇到了一些困難。我有Rpi2 SIM900模塊附加。我可以撥打電話,接聽電話,發送短信,甚至可以收到短信。但把所有人放在一起讓我頭痛。我一直在滾動谷歌,現在我看到,即使結果都是相同的,所以我在進一步的0點。使用SIM900的AT命令接收短信並撥打電話

所以我的議程是,我會發送和SMS到SimModule。蟒蛇會讀取傳入的短信的,如果短信將從手機號從批准列表到達,將包含特定的代碼,它將使特定號碼進行呼叫:

短信的例子

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 

如何,現在我在短信中,請新增功能「高清GetAllSMS」的電話號碼300億將與文本RV,它會執行「DEF Call48」這是否是RI將執行「DEF Call47」

存在一些幫助將不勝感激。 Tnx提前。

回答

1

調制解調器響應的正確解析可能會非常棘手(例如,請參閱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 

此功能將讀取所有短信,並返回它們作爲元組的列表:[("+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() 
+0

HI我見我可能沒有正確地修改我的問題。 我需要能夠閱讀以下 + CMGL:2,「REC READ」,「+ 30000000000」,「」,「17/08/28,00:34:12 + 08」 RI 如果SMS將包含+30000000000和RI python將ATD0000001呼叫到電話號碼。 如果短信將包含+30000000000和RV python將ATD0000002撥打電話號碼。 等。如果短信中RI,RV,MI,MV和電話號碼+30000000000的條件不符合,功能應該不起作用 – user3343073

+0

對不起,我開始在錯誤的地方嘗試剝離,而不是在SMS中查找字符串。 – user3343073

+0

是的,你會得到消息列表使用該功能,然後做任何你想與他們。爲了清楚起見,我使用用例更新了答案。 – 9dogs