Search found 10 matches

by sarusso
Mon Mar 01, 2021 12:09 am
Forum: WiPy and CC3200 boards
Topic: UART with GSM SIM800L
Replies: 17
Views: 107284

Re: UART with GSM SIM800L

Hi JingaWorks,

the pins:

MODEM_RST_PIN
MODEM_PWKEY_PIN
MODEM_POWER_ON_PIN

are for automatically powering on and resetting the modem which is required for some boards.

If you have the modem always on, you can just leave them set to None!
by sarusso
Wed Feb 26, 2020 1:46 pm
Forum: WiPy and CC3200 boards
Topic: UART with GSM SIM800L
Replies: 17
Views: 107284

Re: UART with GSM SIM800L

headshaker wrote:
Sat Feb 22, 2020 1:09 pm
Now the only problem is in PPPoS
There is this PR from the hiveeyes.org community:

https://github.com/pythings/Drivers/pull/5

..but I have not gave it a try yet.
by sarusso
Tue Feb 18, 2020 3:57 pm
Forum: WiPy and CC3200 boards
Topic: UART with GSM SIM800L
Replies: 17
Views: 107284

Re: UART with GSM SIM800L

Provided that I am not an hardware expert, there is the wiring schematic on the GitHub page of the board I am using: https://github.com/Xinyuan-LilyGO/TTGO-T-Call (I attach a screenshot just in case). When I started working on SIM800L wiring a few weeks ago, I noticed a lot of confusion online in re...
by sarusso
Tue Feb 18, 2020 2:50 pm
Forum: WiPy and CC3200 boards
Topic: UART with GSM SIM800L
Replies: 17
Views: 107284

Re: UART with GSM SIM800L

Warning: this post refers to this specific code commit: https://github.com/pythings/Drivers/tree/865216c0f351f91a229e69b0015e4390745504a9, since the driver is evolving if you just browse the repo at the latest version things won't match (but are similar). When you flash MicroPython, you get a) a Mi...
by sarusso
Thu Feb 13, 2020 3:09 pm
Forum: ESP32 boards
Topic: How to use SIM800l connect internet with network.socket?Thanks
Replies: 3
Views: 4463

Re: How to use SIM800l connect internet with network.socket?Thanks

Not sure if this is off-topic, but here is a pure-MicroPython driver ready to use for http GET and POST (not socket, uses AT commands): https://github.com/pythings/Drivers/blob/master/SIM800L.py I was looking at using SIM800L with network.socket because I could not find any decent driver allowing me...
by sarusso
Thu Feb 13, 2020 3:02 pm
Forum: WiPy and CC3200 boards
Topic: UART with GSM SIM800L
Replies: 17
Views: 107284

Re: UART with GSM SIM800L

To anyone still interested in using the SIM800L from MicroPython, here is a pure-MicroPython driver ready to use. You can use it as-is or just see how to do things in the right way. Happy coding! :)

https://github.com/pythings/Drivers/blo ... SIM800L.py
by sarusso
Fri Oct 18, 2019 9:42 am
Forum: General Discussion and Questions
Topic: Modules with the leading "u" and without.
Replies: 7
Views: 4434

Re: Modules with the leading "u" and without.

Thank you all, very clear now (it wasn't). Agreed that there should be consistency across ports. As side note about the weak-links, I think that ideally then the non "u" modules should not be allowed to overwrite the "u" modules functionalities already implemented (i.e. the should only extend them)....
by sarusso
Thu Oct 17, 2019 10:36 pm
Forum: General Discussion and Questions
Topic: Modules with the leading "u" and without.
Replies: 7
Views: 4434

Modules with the leading "u" and without.

Hi all, I am trying to understand why on some ports the same module can be invoked both with the leading "u" and without, why some modules exist in their "u" counterpart while others don't, and why some are the exact same module (unless overwritten with "upip"?) while others aren't. For example, on ...
by sarusso
Tue Oct 08, 2019 5:59 pm
Forum: General Discussion and Questions
Topic: No uos.dupterm in the Unix port?
Replies: 3
Views: 2267

Re: No uos.dupterm in the Unix port?

It works, thank you so much.

My understanding was that modifying/adding that macro was required in order to change dupterm's behaviour, not to enable dupterm itself.

Thanks again for the precious tip!

Best,
Stefano.
by sarusso
Tue Oct 08, 2019 2:53 pm
Forum: General Discussion and Questions
Topic: No uos.dupterm in the Unix port?
Replies: 3
Views: 2267

No uos.dupterm in the Unix port?

Hi all, I compiled the Unix port (from git v1.11 tag) but it seems like there is no uos.dupterm, which I was hoping to use to remotely execute some code. This is what I get: MicroPython v1.11 on 2019-10-08; linux version Use Ctrl-D to exit, Ctrl-E for paste mode >>> import uos >>> uos.dupterm Traceb...