我目前正在尝试使用 Telit CC864 蜂窝模块做一些简单的事情。该模块通过串口使用 AT-Commands 进行控制。因此,使用 minicom 等调制解调器控制软件,我可以输入以下命令序列:
Input: AT
Output: OK
Input: AT#SGACT=1,1
Output: OK
Input: AT#SD=1,0,54321,"30.19.24.10",0,0,1
Output: CONNECTED
Input: AT#SSEND=1
> Hello world!
>
Output: OK
它的作用是连接到我设置的服务器并发送一个数据包“Hello world!”。minicom 一切正常。但是,我想做的是将其转换为 python 脚本。这是我到目前为止所拥有的:
import serial
import time
# Modem config
modem_port = serial.Serial()
modem_port.baudrate = 115200
modem_port.port = "/dev/tty.usbserial-00002114B"
modem_port.parity = "N"
modem_port.stopbits = 1
modem_port.xonxoff = 0
modem_port.timeout = 3
modem_port.open()
def send_at_command(command):
modem_port.write(bytes(command+"\r", encoding='ascii'))
def read_command_response():
print(modem_port.read(100).decode('ascii').strip())
print("\n")
if modem_port.isOpen():
# Check network status
send_at_command("AT+CREG=1")
read_command_response()
# Configure Socket
send_at_command("AT#SCFG=1,1,0,0,1200,0")
read_command_response()
# Obtain IP from network
send_at_command("AT#SGACT=1,1")
read_command_response()
# Connect to AWS server
send_at_command("AT#SD=1,0,54321,\"30.19.24.10\",0,0,1")
read_command_response()
# Send packet to AWS server
send_at_command("AT#SSEND=1")
read_command_response()
send_at_command("This is sent from Python Script.")
read_command_response()
modem_port.close()
但是,此脚本无法发送数据包。我认为原因是因为在 minicom 中,我必须在 Hello world 之后按 enter!为了发送数据包。我不知道如何在 python 脚本中模拟它。任何建议将不胜感激。
编辑:
所以我又读了一些模块文档,看来我需要做的是通过串口发送 Ctrl-Z char(0x1A hex)。你知道我会如何在 python 中做到这一点吗?