Give me a solution for the esp01 response throught Micropython #13762
Replies: 2 comments
-
Hi @Jayakrishna112 , We converted this from an Issue to a Discussion as it's not a bug in MicroPython. AT commands need to be ended with a newlines (return) character, either def send_at_command(cmd):
esp.write(cmd)
esp.write('\r\n') # New line
... rest of function stays same |
Beta Was this translation helpful? Give feedback.
0 replies
-
It has worked |
Beta Was this translation helpful? Give feedback.
0 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.
-
Checks
I agree to follow the MicroPython Code of Conduct to ensure a safe and respectful space for everyone.
I've searched for existing issues matching this bug, and didn't find any.
Port, board and/or hardware
Raspberry Pi Pico
MicroPython version
MicroPython v1.22.1 on 2024-01-05; Raspberry Pi Pico with RP2040
Reproduction
when i run this python code :
Expected behaviour
the output should be:
Observed behaviour
but giving only:
Additional Information
No, I've provided everything above.
Beta Was this translation helpful? Give feedback.
All reactions