Search found 4 matches

by robert1968
Sun Jun 13, 2021 4:34 pm
Forum: ESP8266 boards
Topic: Solved - import femtosip - MemoryError: - Too large modul?
Replies: 1
Views: 1332

Re: import femtosip - MemoryError: - Too large modul?

Compile issue resolved. ("-mcache-lookup-bc " options was not needed when compile.) Lesson learnt: If your module too big when import, and you have MemoryError: then download https://github.com/micropython/micropython/tree/master/mpy-cross cd to mpy-cross make and compile your py module to mpy. ./mi...
by robert1968
Sun Jun 13, 2021 2:47 pm
Forum: ESP8266 boards
Topic: Solved - import femtosip - MemoryError: - Too large modul?
Replies: 1
Views: 1332

Solved - import femtosip - MemoryError: - Too large modul?

Update: Resolved by using "mpy-cross" compiler. This compile the "too large" module to be imported. Hi, I tried to import an excellent custom SIP - VOIP module. https://github.com/astoeckel/femtosip (This great SIP protocol implementation allows ringing voip line. I need this for to make a remote b...
by robert1968
Wed Feb 20, 2019 7:41 pm
Forum: ESP8266 boards
Topic: BlitzWolf SHP6 bw-shp6 - Micropython flashing
Replies: 0
Views: 2208

BlitzWolf SHP6 bw-shp6 - Micropython flashing

Hi, Finally figure out how to install Micropython on BlitzWolf SHP6 --Which is an ESP8266 based yet another smart socket. (see picture how to serial connect [url=https://github.com/arendst/Sonoff-Tasmota/wiki/BlitzWolf-SHP6/]BlitzWolf-SHP6![/url] If you want to put micropython then this is the trick...
by robert1968
Sun Oct 01, 2017 4:37 pm
Forum: ESP8266 boards
Topic: webserver to turn an LED on or off
Replies: 5
Views: 33179

Re: webserver to turn an LED on or off

[quote="ideal2545"]Got it figured out by doing some cobbling together of documents and research... for anyone who needs a little tutorial in the future: (and if anyone see's a better/more efficient way for me to accomplish this can you please tell me?) [code]import socket import machine #HTML to sen...