Search found 65 matches

by PinkInk
Sun Jul 10, 2016 1:11 am
Forum: General Discussion and Questions
Topic: Linux Command Line on Windows
Replies: 14
Views: 11655

Re: Linux Command Line on Windows

Excellent, I'll try to get the command line installed myself and test. Thanks.
by PinkInk
Sat Jul 09, 2016 6:08 pm
Forum: General Discussion and Questions
Topic: Linux Command Line on Windows
Replies: 14
Views: 11655

Re: Linux Command Line on Windows

Does usocket work on micropython unix build, running under Win 10?
by PinkInk
Thu Jun 09, 2016 9:36 am
Forum: MicroPython pyboard
Topic: Implementing/Overriding operators
Replies: 1
Views: 2783

Re: Implementing/Overriding operators

Reference https://github.com/micropython/micropython/wiki/Differences, particularly """3.MicroPython does not implement complete CPython object data model, but only a subset of it.""". Micropython is "micro" ... just how much of Python it crams into a miniscule package is a miraculous testament to j...
by PinkInk
Fri May 27, 2016 1:11 am
Forum: ESP8266 boards
Topic: esp-open-sdk build error - python is missing or unusable (debian)
Replies: 6
Views: 10217

Re: esp-open-sdk build error - python is missing or unusable (debian)

Installing python2.7-dev fixed it for me on latest Ubuntu

Tim
by PinkInk
Fri May 20, 2016 10:34 am
Forum: Programs, Libraries and Tools
Topic: micropython snmp library
Replies: 1
Views: 7857

micropython snmp library

I finally managed to squeeze limited support for Simple Network Management Protocol v1 down into something small enough to (just about) run on the esp8266 ga1.8 firmware. If anyone's interested, you can find it here; https://github.com/PinkInk/upylib/tree/master/usnmp Bugs to squash and suggestions ...
by PinkInk
Sat May 07, 2016 5:16 pm
Forum: Drivers for External Components
Topic: Standard API for drivers?
Replies: 37
Views: 29610

Re: Standard API for drivers?

udecimal would be useful for a more comprehensive ntp library, and potentially other network protocols? (flame-war: on). In general, as network is more readily available in micropython (baremetal) than it was before (with esp8266), should network protocols fall into the category of 'drivers', and th...
by PinkInk
Sat May 07, 2016 2:58 pm
Forum: ESP8266 boards
Topic: Corrupted filesystem
Replies: 15
Views: 19567

Re: Corrupted filesystem

Stability generally much improved with a jury-rigged 3xAA battery pack ... thanks.
by PinkInk
Sat May 07, 2016 1:24 am
Forum: ESP8266 boards
Topic: Corrupted filesystem
Replies: 15
Views: 19567

Re: Corrupted filesystem

Ahhh, that's probably it ... at the moment 2x(new)AA and 100uf across the rails - but I do run these until the module bulks at them, hence the flash may already be having less obvious issues. I've been caught by surprise by how power sensitive the bare modules are, melted a breadboard psu in the pro...
by PinkInk
Fri May 06, 2016 3:54 pm
Forum: ESP8266 boards
Topic: Corrupted filesystem
Replies: 15
Views: 19567

Re: Corrupted filesystem

Damien; thanks - you're a star; yes, that's cleared the filesystem.

Something funny is going on; some combination of trying to open to write 'neopixel.py' and/or 'neoxpixel_.py' occasionally re-corrupts the filesystem, but I've not yet been able to find a test case that does so consistently.
by PinkInk
Fri May 06, 2016 5:21 am
Forum: ESP8266 boards
Topic: Corrupted filesystem
Replies: 15
Views: 19567

Re: Corrupted filesystem

I'm having what appears to be a related problem with 12e modules, after writing boot.py, main.py and an updated neopixel.py I noticed an increasing number of "0x00 * x" files in the filesystem. This is what os.listdir() says, shortly before the module reboots with memory issues; >>> import os >>> os...