0wQ / air780e-forwarder

合宙Air780系列4G模组,短信转发,来电通知,Air724在这里 -> https://github.com/0wQ/air724ug-forwarder
MIT License
313 stars 66 forks source link

添加香港卡支持? #22

Closed Akityo closed 1 year ago

Akityo commented 1 year ago

我尝试添加了45412,但是似乎不行

image

image

0wQ commented 1 year ago

是通知内容中不能显示正确的运营商吗? 还是开发板用这张卡不能推送通知

Akityo commented 1 year ago

不能推送消息,有看到消息队列,但是可能发不出去,没有网络

0wQ commented 1 year ago

不能推送消息,有看到消息队列,但是可能发不出去,没有网络

刷个带rndis的固件,看看电脑能不能上网,或者插手机里能不能上网

Akityo commented 1 year ago

插手机可以,所以不知道是不是要设置什么,比如apn? cmhk? 我刷了rndis的,下班回去试试

Akityo commented 1 year ago

我试了,rndis可以用,可以上网,感觉一切正常,但是就是信息发不了

我贴一下配置

image

一开始我只加了钉钉,今天回来尝试添加了tg,也还是不行

0wQ commented 1 year ago

telegram 需要配置一下自己的 TELEGRAM_PROXY_API,https://github.com/0wQ/telegram-notify

Akityo commented 1 year ago

噢噢,好的,但是钉钉的也不行,我一开始测试就只用的钉钉,以前在公司的电脑上是可以用的,国内的联通卡。。

Akityo commented 1 year ago

话说还是不行,然后有方法上电自启吗,公司电脑有时候断电再开机,每次都要按,有点麻烦

0wQ commented 1 year ago

插电脑能正常上网,应该设备发送通知也没问题啊

上电开机可以看这里,两个焊点短接就可以 image https://cdn.openluat-luatcommunity.openluat.com/attachment/20221214113943532_%E5%BC%80%E5%8F%91%E6%9D%BFCore_Air780E%E4%BD%BF%E7%94%A8%E8%AF%B4%E6%98%8EV1.0.3.pdf

Akityo commented 1 year ago

怎么样可以在日志里面查看详细的信息,比如短信发送队列,打印到日志,lua不太懂

36h commented 1 year ago

通过短信控制设备 请问这个要怎么实现?

0wQ commented 1 year ago

通过短信控制设备 请问这个要怎么实现?

给开发板中的手机卡发一条短信, 短信内容格式: SMS,10010,余额查询, 开发板就会给 10010 发一条短信

0wQ commented 1 year ago

看日志没有请求结果

怎么样可以在日志里面查看详细的信息,比如短信发送队列,打印到日志,lua不太懂

你好,试一下修改这里,看一下日志中 mobile.status() 值是多少 https://github.com/0wQ/air780e-forwarder/blob/e8b8a5a69300a8b7f846dff39d688735eebc8d2c/script/util_notify.lua#L415-L416

        log.info("mobile.status()", mobile.status())
        -- 消息队列非空, 且网络已注册
        if next(msg_queue) ~= nil then
Akityo commented 1 year ago

sorry,我的失误,为了防止被钉钉检测,改了一些关键词,导致关键词不匹配,发送失败

现在可以正常发通知了,但是好像没办法获取到手机号

0wQ commented 1 year ago

sorry,我的失误,为了防止被钉钉检测,改了一些关键词,导致关键词不匹配,发送失败

现在可以正常发通知了,但是好像没办法获取到手机号

手机号是从 sim 卡读的,有些卡就是没有,貌似可以用安卓手机在手机设置中写进去,https://gitee.com/openLuat/LuatOS/issues/I6AB3N#note_17355962