Search found 5 matches

by fxmike08
Sat Aug 29, 2020 3:42 pm
Forum: ESP32 boards
Topic: TTGO-T-Call-V1-3-ESP32 - SIM800L - getaddrinfo DNS
Replies: 3
Views: 2908

Re: TTGO-T-Call-V1-3-ESP32 - SIM800L - getaddrinfo DNS

Found a quick solution ... wlan.ifconfig(('0.0.0.0', '255.255.255.0', '0.0.0.0', '8.8.8.8'))
This will set the DNS... and then it will work ... I'm looking for a way to set the DNS directly from C code. Any idea ?
by fxmike08
Sat Aug 29, 2020 1:04 pm
Forum: ESP32 boards
Topic: TTGO-T-Call-V1-3-ESP32 - SIM800L - getaddrinfo DNS
Replies: 3
Views: 2908

Re: TTGO-T-Call-V1-3-ESP32 - SIM800L - getaddrinfo DNS

Still empty. >>> socket.getaddrinfo('http://micropython.org', 80) [] As I suspected if I connect to WLAN is working: >> socket.getaddrinfo('micropython.org', 80) [(2, 1, 0, 'micropython.org', ('176.58.119.26', 80))] >>> wlan.connect('SSID', '******') # connect to an AP >>> I (319901) wifi: new:<2,0>...
by fxmike08
Sat Aug 29, 2020 12:49 pm
Forum: ESP32 boards
Topic: TTGO-T-Call-V1-3-ESP32 - SIM800L - getaddrinfo DNS
Replies: 3
Views: 2908

TTGO-T-Call-V1-3-ESP32 - SIM800L - getaddrinfo DNS

Hi everybody, I'm trying to use micropython 1.12 with TTGO-T-Call-V1-3-ESP32. I managed to create a custom module based on https://raw.githubusercontent.com/loboris/MicroPython_ESP32_psRAM_LoBo/master/MicroPython_BUILD/components/micropython/esp32/modgsm.c with some modification. Everything works fi...
by fxmike08
Tue Apr 28, 2020 5:19 pm
Forum: ESP32 boards
Topic: Connecting LOLIN/WEMOS D32Pro V2.0 and 2.13 Inch e-paper
Replies: 12
Views: 13693

Re: Connecting LOLIN/WEMOS D32Pro V2.0 and 2.13 Inch e-paper

Hi Thomas,

Do you have an working example for framebuf on how to display in landscape mode, using your code version?

Thanks,
Mike
by fxmike08
Mon Feb 10, 2020 3:57 pm
Forum: Programs, Libraries and Tools
Topic: The direction of framebuf.MONO_HLSB
Replies: 7
Views: 10175

Re: The direction of framebuf.MONO_HLSB

I having same behavior on a 2.13" display, having a IL3897 driver http://www.e-paper-display.com/downloadsfront.do?method=picker&flag=all&id=5f09fdc1-1054-40fc-b4f0-9f77579105b6&fileId=682&v=0.zip . This driver doesn't seems to be supported yet by any micropython library. I added a solution for this...