Search found 38 matches

by dwight.hubbard
Sun Jul 03, 2016 9:40 am
Forum: Programs, Libraries and Tools
Topic: Redis client, packaging questions
Replies: 22
Views: 17725

Re: Redis client, packaging questions

One other thing, if you're running on esp8266 using the full uredis.Redis class will take up most if not all of the esp8266's memory. Take a look at http://micropython-redis.readthedocs.io/en/latest/usage.html#the-uredis-modular-classes for information on how to pull in just the components you need....
by dwight.hubbard
Sun Jul 03, 2016 9:34 am
Forum: Programs, Libraries and Tools
Topic: redis-cloudclient/redis-cloudmanager
Replies: 2
Views: 4273

redis-cloudclient/redis-cloudmanager

I finally have a bit of a working proof of concept for one thing I'm dong with redis. redis-cloudclient is a simple client that connects out to a redis server and watches a simple queue for incoming commands. It also uses the redis server for storage. Currently the only operation it supports is exec...
by dwight.hubbard
Sun Jul 03, 2016 8:25 am
Forum: Programs, Libraries and Tools
Topic: Redis client, packaging questions
Replies: 22
Views: 17725

Re: Redis client, packaging questions

There are multiple ways to do it, but the method I've been using on the esp8266 is: Clone the micropython repo from github. Build and install micropython unix. Go into the root micropython directory and "make clean" Change into the esp8266 directory. Install the micropython-redis package to the esp8...
by dwight.hubbard
Tue Jun 28, 2016 7:45 am
Forum: Programs, Libraries and Tools
Topic: Redis client, packaging questions
Replies: 22
Views: 17725

Re: Redis client, packaging questions

I just did some updates to the redis client to decrease the resource usage. Now that I have the redis functionality I need working on the esp8266 I created a module that implements a subset of the hotqueue module functionality. MicroPython v1.8.1-87-g7ddd85f-dirty on 2016-06-27; ESP module with ESP8...
by dwight.hubbard
Fri Jun 17, 2016 6:45 pm
Forum: WiPy and CC3200 boards
Topic: Choice of board
Replies: 7
Views: 9116

Re: Choice of board

A few things about the wipy that weren't mentioned here. The wipy does not support floating point. while the esp8266 does. The wipy boards don't have onboard power, so using it without the expansion board requires an external power supply. The wipy firmware does not get frequent updates. The current...
by dwight.hubbard
Thu Jun 16, 2016 6:11 am
Forum: Programs, Libraries and Tools
Topic: micropython-bootconfig to configure a device with a remote app
Replies: 0
Views: 4418

micropython-bootconfig to configure a device with a remote app

I have been aiming to have my micropython boards easier to configure. So I have been working on a configuration system that works similar to how particle IoT devices are configured (which is similar to configuring a chromecast for that matter). At this point I have the basic configuration functional...
by dwight.hubbard
Wed Jun 08, 2016 5:24 pm
Forum: WiPy and CC3200 boards
Topic: Pymakr on this forum
Replies: 6
Views: 8514

Re: Pymakr on this forum

I generally use pycharm to do my development on the wipy. My notes on getting it set up with the wipy are here http://wipy-tools.readthedocs.io/en/latest/configuration_pycharm.html In the document "Pycom Pymakr Beta Release 1.0.0.b1 Notes - 27 April 2016" we can read : Works * Built-in REPL console ...
by dwight.hubbard
Tue Jun 07, 2016 3:49 am
Forum: Programs, Libraries and Tools
Topic: Automatic Fiesta - The easy way to distribute updates.
Replies: 1
Views: 2538

Re: Automatic Fiesta - The easy way to distribute updates.

I like what you have started. Have you considered running redis and using the redis bindings I have working? The redis protocol is a fairly simple socket protocol that's about as complex as as http. The benefit is you could have a list of files in a redis key named by the mac address, which you coul...
by dwight.hubbard
Tue Jun 07, 2016 3:36 am
Forum: General Discussion and Questions
Topic: Pycon.us sprints
Replies: 6
Views: 5123

Re: Pycon.us sprints

I just got home from Pycon.us 2016, so a quick follow up. The first day of sprints where insane, between the microbit sprint being run by Nicholas Tollervey and my sprint working with other boards running Micropython we had a large number of people. We completely ran out of both Microbits and ESP826...
by dwight.hubbard
Sat Jun 04, 2016 3:39 pm
Forum: General Discussion and Questions
Topic: Pycon.us sprints
Replies: 6
Views: 5123

Re: Pycon.us sprints

I was frankly amazed that the micropython related sprinting on the first day had more people than many of the other sprints. I think it really shows there is a lot of interest in micropython, once people find out about it. This year's pycon.us already has a micropython sprint for the microbit listed...