January 14, 2020 at 16:10
#615
Keymaster
New update: I figured it out!
I used a sequence in the REPL that I find fixes almost anything, and after this it worked.
>>>from network import LTE
>>>lte = LTE()
>>>lte.deinit()
>>>lte.init()
>>>lte.attach()
>>>lte.isattached()
True
>>>lte.send_at_cmd(“AT+CIMI”)
‘\r\nxxxxxxxxxxxxxxx\r\n\r\nOK\r\n’
Hope this can be helpful for someone else as well. 🙂