SIM800L EVB #9931
Unanswered
Erkman84
asked this question in
Hardware & Peripherals
SIM800L EVB
#9931
Replies: 1 comment 2 replies
-
I don't think it will be a difference, but shouldn't this be |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi there,
I had previously good experience with the pure original SIM800L (which works from LiPo), I've figured out my working codes for esp and RPB Pico.
Rescently I got an SIM800L EVB Module, which works now from 5V (sounds good), I inserted the SIM, added 5V with 2Amp, and the module starts up, after 10second I see, the SIM is registered on network (Led blinking at every 3 seconds). Fine.
Now I would like to communicate with the module. I allways get as answer: b'\x00' tried several commands. Im frustrated now, and do not know what is missing.
gsm = UART(1, baudrate=9600, tx=Pin(4), rx=Pin(5), timeout=2000)
gsm.write('AT+COPS=?\r\n') # or simply gsm.write('AT\r\n') or whatever you can imagine
print(gsm.read())
--> returns b'\x00'
if I check it with gsm.any() then I get 0.
That's not good.
Wiring (as I mentioned I've had good experience with the original SIM800L), so yes, TX-RX on RX-TX Pins (Rapsberry PICO throws an error if you don't do it the right way), ground (also tried with booth grounds) on the ground.
I do not know what's wrong. Micropython 1.19. so everything is up to date.
Any idea? Thank you.
Beta Was this translation helpful? Give feedback.
All reactions