Search found 10 matches

by marcelstoer
Tue Aug 30, 2016 1:51 pm
Forum: ESP8266 boards
Topic: New chip ESP8285
Replies: 32
Views: 39821

Re: New chip ESP8285

mad474 wrote:Test rig briefly fried together.
Veeeery clever, kudos!
by marcelstoer
Thu Aug 18, 2016 10:28 pm
Forum: ESP8266 boards
Topic: New chip ESP8285
Replies: 32
Views: 39821

Re: New chip ESP8285

nui_de wrote:here's the first really cheap board I found, looks nice :mrgreen:
https://www.itead.cc/psf-a85.html
Yep, I also ordered a few of those. Now I need to learn to solder such tiny stuff...1/20'' pin width, sigh.
by marcelstoer
Thu Jun 23, 2016 9:26 pm
Forum: ESP8266 boards
Topic: New chip ESP8285
Replies: 32
Views: 39821

Re: New chip ESP8285

I can confirm that NodeMCU runs out-of-the-box on this SoC: http://frightanic.com/iot/nodemcu-esp82 ... ect-match/ This probably means that MicroPython for the ESP8266 will also work just fine on the ESP8285.
by marcelstoer
Sun May 29, 2016 7:44 pm
Forum: WiPy and CC3200 boards
Topic: Missing math module?
Replies: 5
Views: 8265

Re: Missing math module?

Due to space reasons, there’s no floating point support, and no math module. This sentence is in docs/wipy/general.rst I know but I haven't found out what makes the /wipy/library/math.html path appear. You've got to search for 'math' in the docs for that URL to become available. It's not in the lef...
by marcelstoer
Sun May 29, 2016 8:17 am
Forum: WiPy and CC3200 boards
Topic: Missing math module?
Replies: 5
Views: 8265

Re: Missing math module?

The docs are misleading and inconsistent indeed. At https://micropython.org/resources/docs/en/latest/wipy/wipy/general.html it clearly says Due to space reasons, there’s no floating point support, and no math module. I'll create an issue at https://github.com/micropython/micropython/issues as I have...
by marcelstoer
Sat May 28, 2016 6:36 pm
Forum: WiPy and CC3200 boards
Topic: Missing math module?
Replies: 5
Views: 8265

Re: Missing math module?

That's what I asked myself when I looked at the available functions. If you're implicitly saying that there's really no math module on the WiPy, which would make sense to me, then why is it in the docs?
by marcelstoer
Sat May 28, 2016 4:29 pm
Forum: WiPy and CC3200 boards
Topic: Missing math module?
Replies: 5
Views: 8265

Missing math module?

According to https://micropython.org/resources/docs/en/latest/wipy/library/math.html there's a math module (I know, no floating point though). Yet, when I run import math the answer is File "<stdin>", line 1, in <module> ImportError: module not found Since Google didn't turn up anything helpful when...
by marcelstoer
Fri May 20, 2016 10:30 pm
Forum: WiPy and CC3200 boards
Topic: Debouncing with IRQ
Replies: 25
Views: 143104

Re: Debouncing with IRQ

I appreciate your feedback, thanks. So far "IoT" primarily meant ESP8266+NodeMCU for me. So your world doesn't feel familiar yet :P

Isn't (one of) the issue with that main loop that prototyping in the REPL is a dead end? You can't edit anything anymore once the loop has been set in motion.
by marcelstoer
Fri May 20, 2016 7:10 pm
Forum: WiPy and CC3200 boards
Topic: Debouncing with IRQ
Replies: 25
Views: 143104

Debouncing with IRQ

I finally sat down and started tinkering with the WiPY I helped fund on Kickstarter last year. (Micro)Python is all new to me. There's documented debounce function for the pyboard that can easily be adapted for use on the WiPy. http://www.eng.utah.edu/~cs5780/debouncing.pdf#page=19 isn't really fond...
by marcelstoer
Sun Nov 08, 2015 9:47 pm
Forum: WiPy and CC3200 boards
Topic: No USB port on OS X
Replies: 3
Views: 5031

No USB port on OS X

My WiPy is in the extension board which is connected via USB to my MacBook running OS X 10.9.5. I put from machine import UART import os uart = UART(0, baudrate=115200) os.dupterm(uart) into boot.py, triggered a reset i.e. reboot but there's no /dev/tty.usbmodem* device. I haven't found any other me...