Search found 8 matches

by dariox
Wed Dec 26, 2018 3:47 pm
Forum: ESP8266 boards
Topic: accessing uart0 on nodemcu board
Replies: 23
Views: 16396

Re: accessing uart0 on nodemcu board

The modem runs at 9600 baudrate. What would be the right command to read the response instead of read() ?
by dariox
Tue Dec 25, 2018 3:36 pm
Forum: ESP8266 boards
Topic: accessing uart0 on nodemcu board
Replies: 23
Views: 16396

Re: accessing uart0 on nodemcu board

I'm now connected over the WebREPL and I can send the commands, but the response is somehow strange. I would expect something different. >>> uart.write('AT+CFUN=1,1\r'.encode()) 12 uart.read() or uar.readline() shows nothing..
by dariox
Mon Dec 24, 2018 10:30 pm
Forum: ESP8266 boards
Topic: accessing uart0 on nodemcu board
Replies: 23
Views: 16396

Re: accessing uart0 on nodemcu board

OK, thx!
by dariox
Mon Dec 24, 2018 2:08 pm
Forum: ESP8266 boards
Topic: accessing uart0 on nodemcu board
Replies: 23
Views: 16396

Re: accessing uart0 on nodemcu board

Ok, now it seems working. But when I put uos.dupterm(None, 1) into the terminal, it stops working, the terminal hangs.
by dariox
Sun Dec 23, 2018 9:37 pm
Forum: ESP8266 boards
Topic: accessing uart0 on nodemcu board
Replies: 23
Views: 16396

Re: accessing uart0 on nodemcu board

I've flashed the same boot.py, but still the same result. I'm currently running no main.py. FW is
esp8266-20180511-v1.9.4.bin
by dariox
Sun Dec 23, 2018 3:52 pm
Forum: General Discussion and Questions
Topic: General question regarding UART
Replies: 2
Views: 1823

Re: General question regarding UART

Thanks for linking the post. I couldn't get it working yet, I posted some additional questions in the linked post.
by dariox
Sun Dec 23, 2018 3:52 pm
Forum: ESP8266 boards
Topic: accessing uart0 on nodemcu board
Replies: 23
Views: 16396

Re: accessing uart0 on nodemcu board

I'm working on something similar. I have a modem hooked up to my ESP8266 12E via serial in order to send a receive AT commands to the modem. The cabeling is a follow: ESP8266 3.3V --> Modem 3.3V ESP8266 GND --> Modem GND ESP8266 RX --> Modem TX ESP8266 D4 --> Modem RX However, if I run the uos.dupte...
by dariox
Sat Dec 22, 2018 12:40 pm
Forum: General Discussion and Questions
Topic: General question regarding UART
Replies: 2
Views: 1823

General question regarding UART

I have a ESP8266 12E I would like to connect to a SIMCOM7000E modem over serial connectivity (RX / TX). Here in the forum I read, that the serial interface is already occupied by the REPL. Is there even a way to connect the modem over serial to the ESP8266? I've already achieved the same with Arduin...