Search found 258 matches

by platforma
Tue Nov 22, 2016 1:40 pm
Forum: Other Boards
Topic: Pycom FiPy/xPy announcement
Replies: 4
Views: 6852

Re: Pycom FiPy/xPy announcement

I kinds wish there was a separate module with just LTE, instead everything bundled together.
by platforma
Tue Nov 22, 2016 9:36 am
Forum: MicroPython pyboard
Topic: How to call linux bash from micropython
Replies: 6
Views: 8154

Re: How to call linux bash from micropython

The module is called "uos". You need to pass the command you're trying to call to the system() function.

Code: Select all

>>> import uos
>>> uos.system('uname -a')
Linux arch 4.7.6-1-ARCH #1 SMP PREEMPT Fri Sep 30 19:28:42 CEST 2016 x86_64 GNU/Linux
Are you, perhaps, trying to run this on pyboard?
by platforma
Mon Nov 21, 2016 9:35 am
Forum: Other Boards
Topic: Pycom FiPy/xPy announcement
Replies: 4
Views: 6852

Re: Pycom FiPy/xPy announcement

These were also my thoughts. I don't know how many people they have working on dev/support. Releasing 4/5 boards in a short period of time might leave the codebase less mature and create a support nightmare for the devs.
by platforma
Fri Nov 18, 2016 9:46 am
Forum: ESP8266 boards
Topic: failing to wrap socket.
Replies: 7
Views: 6751

Re: SOCKET Variable

This is, indeed, an error, I am going to merge your two topics together and move it to the esp8266 category.
Please don't cross-post and don't create multiple topics for the same issue.
by platforma
Fri Nov 18, 2016 9:44 am
Forum: Other Boards
Topic: Pycom FiPy/xPy announcement
Replies: 4
Views: 6852

Pycom FiPy/xPy announcement

The new module from pycom has been announced yesterday via the mailing list. Five network module - FiPy or xPy. Although the official page hasn't been updated yet: https://www.pycom.io/product/xpy/, here's a snippet from the email. In addition to WiFi, BLE, LoRa and Sigfox, we've added the latest ce...
by platforma
Thu Nov 17, 2016 9:31 am
Forum: ESP8266 boards
Topic: failing to wrap socket.
Replies: 7
Views: 6751

Re: SOCKET Variable

I might be wrong, but IPPROTO_SEC is available for WiPy. Which "most" examples are you referring to and what board are you using?
http://docs.micropython.org/en/latest/w ... pproto_sec
by platforma
Wed Nov 16, 2016 9:22 am
Forum: General Discussion and Questions
Topic: Considering M2M communication protocols
Replies: 3
Views: 4206

Re: Considering M2M communication protocols

As mentioned in the older post, the library https://github.com/chrysn/aiocoap looks like a good candidate for a port, and only has asyncio as a dependency. So far nobody took on the work, and since it's not on the developers' list at the moment, I think this will need a push from the community.
by platforma
Tue Nov 15, 2016 3:18 pm
Forum: ESP8266 boards
Topic: File Permission issues - OSError: [Errno 13] EACCES
Replies: 7
Views: 13353

Re: File Permission issues - OSError: [Errno 13] EACCES

Also try erasing the flash completely using the latest esptool.py.
by platforma
Tue Nov 15, 2016 3:15 pm
Forum: ESP8266 boards
Topic: File Permission issues - OSError: [Errno 13] EACCES
Replies: 7
Views: 13353

Re: File Permission issues - OSError: [Errno 13] EACCES

Which module are you using? Filesystem is only supported with modules >512k of flash.
That os.listdir() looks like there is no filesystem.