Search found 40 matches

by nui_de
Thu Jul 20, 2017 8:06 am
Forum: Other Boards
Topic: PADI
Replies: 1
Views: 2431

PADI

Hi,

wonder if any stumbled about this:
https://www.pine64.org/?page_id=917

Nice, what do you think?
by nui_de
Sun Jul 24, 2016 6:55 pm
Forum: ESP8266 boards
Topic: esp8266 make error
Replies: 9
Views: 9842

Re: esp8266 make error

Thanks, I am not sure why I was prompted to use sudo - however I guess something is messed up, will try a clean
checkout...
by nui_de
Sun Jul 24, 2016 10:49 am
Forum: ESP8266 boards
Topic: esp8266 make error
Replies: 9
Views: 9842

Re: esp8266 make error

Hi, I currently also get stuck with this... did the same as Adixylian but when trying to build: ~/micropython/esp8266$ sudo make axtls ... make[1]: Verzeichnis „/home/nui/micropython/lib/axtls“ wird betreten make -C crypto make[2]: Verzeichnis „/home/nui/micropython/lib/axtls/crypto“ wird betreten /...
by nui_de
Tue Jul 19, 2016 7:53 am
Forum: ESP8266 boards
Topic: New chip ESP8285
Replies: 32
Views: 39493

Re: New chip ESP8285

When reading the specs of the ESP8285 I found that GPIO9 and GPIO10 are basically
free for use:
Note that since ESP8285 has SPI flash memory internally connected in DOUT mode,
pins 9 and 10 may be used as GPIO / I2C / PWM pins.
Is it likely to make those available?
by nui_de
Sat Jul 16, 2016 7:45 am
Forum: ESP8266 boards
Topic: New chip ESP8285
Replies: 32
Views: 39493

Re: New chip ESP8285

Hi,

here's the first really cheap board I found, looks nice :mrgreen:
https://www.itead.cc/psf-a85.html
by nui_de
Sat Jun 11, 2016 11:11 am
Forum: Other Boards
Topic: Atheros AR9331
Replies: 6
Views: 6895

Re: Atheros AR9331

Its not my "Idea" and I a am unfortunately not able to port it anyway :cry: Just wanted to share this piece of Hardware because It looks very promising and is different from the other hardware projects in relation to the powerfull hardware. If someone else also likes it why are chances smaller someo...
by nui_de
Sat Jun 11, 2016 9:40 am
Forum: Other Boards
Topic: Atheros AR9331
Replies: 6
Views: 6895

Re: Atheros AR9331

Sure but it would me much more cool if micropython runs directly on the chip
with no underlying Linux with direct HW support, right?

:mrgreen:
by nui_de
Sat Jun 11, 2016 9:22 am
Forum: Other Boards
Topic: Atheros AR9331
Replies: 6
Views: 6895

Atheros AR9331

Hi, i stumbled across a Kickstarter Project called "Onion Omega" which looks like a very nice piece of harware with lot of IOs and processing power. Its also very tiny and has a low power consumption. I think it would be very cool if micropython could run on this device - what do you think??? https:...
by nui_de
Wed May 18, 2016 9:00 pm
Forum: WiPy and CC3200 boards
Topic: Onewire and DS18B20
Replies: 42
Views: 55798

Re: Onewire and DS18B20

I was not aware of that (so simple :mrgreen: ) , maybe I just could have counted the bytes and
notice that one is missing.
Many thanks for your comment.
by nui_de
Wed May 18, 2016 5:43 pm
Forum: WiPy and CC3200 boards
Topic: Onewire and DS18B20
Replies: 42
Views: 55798

Re: Onewire and DS18B20

Hi,

I do use the library from Damien and it works pretty good so far.

Code: Select all

...
data = ow.read_bytes(9)
data
bytearray(b'\x0f\x00\x00\xcb\x004\x00\x00\xe8')
sometimes I do get such a result - in this case data[4] is printed as \x004, how can that be?