2
我正在嘗試編寫一個簡單的模塊來啓用發送短信。從藍牙設備獲取響應
文件:我使用藍牙使用下面的示例連接到移動bt-sendsms.py
import bluetooth
target = '00:32:AC:32:36:E8' # Mobile address
print "Trying to send SMS on %s" % target
BTSocket = bluetooth.BluetoothSocket(bluetooth.RFCOMM)
BTSocket.connect((target, 2)) # BT Address
BTSocket.send('ATZ\r')
BTSocket.send('AT+CMGF=1\r')
#sockfd.send('AT+CSCA="+972547716507"\r') # This line changes the SMSC address - do not modify unless required
BTSocket.send('AT+CMGS="+972547877763"\r') # TO Phone Number
BTSocket.send('This is a test message - port 2.\n')
BTSocket.send(chr(26)) # CTRL+Z
print "SMS sent"
sockfd.close()
print "Closed"
我的問題是,我無法覈實或獲取短信的錯誤代碼發送或任何套接字操作。
任何轉診到正確的方向可以理解
一些說明:什麼是非移動端的平臺/藍牙堆棧? – 2009-06-01 11:47:58
請讓我們也有手機型號。 – 2009-06-01 18:44:18