离线
/** GSM状态机 */
/** States used for the GSM state machine */
#define GSM_POWER_ON 0
#define GSM_POWER_ON_WAIT 1
#define GSM_SET_PIN 2
#define GSM_CHECK_CONNECTION 3
#define GSM_CHECK_CONNECTION_WAIT 5
#define GSM_CONNECTION_RESPONSE 6
#define GSM_RUNNING 7
#define GSM_POWER_OFF 8
#define GSM_POWER_OFF_WAIT 9/** SMS短信状态机 */
/** States used for the SMS state machine */
#define SMS_IDLE 0
#define SMS_MODE 1
#define SMS_ALPHABET 2
#define SMS_NUMBER 3
#define SMS_CONTENT 4
#define SMS_WAIT 5/** 打电话(呼叫)状态机 */
/** States used for the call state machine */
#define CALL_IDLE 0
#define CALL_NUMBER 1
#define CALL_SETUP 2
#define CALL_SETUP_WAIT 3
#define CALL_RESPONSE 4
#define CALL_ACTIVE 5
离线
前段时间用过是 python-gsmmodem 用来收发短信还不错
离线
感谢推荐 https://github.com/faucamp/python-gsmmodem
这个兼容哪些GSM 模块?
这个模块还是有问题的,在python3上会遇到编码问题,要用这个版本
https://pypi.org/project/python-gsmmodem-new/
支持的模块列表不清楚。我用的猫池设备。不知道具体型号。
离线
谢谢晕哥 马上就要用上了
离线