Search found 38 matches

by dwight.hubbard
Wed Dec 07, 2016 8:52 pm
Forum: MicroPython pyboard
Topic: Ideas for next evolution of pyboard
Replies: 75
Views: 71723

Re: Ideas for next evolution of pyboard

One idea I would like to see would be to break out the gpio pins using the same high density connector as the tinyduino https://tinycircuits.com/collections/all/products/tinyduino-basic-kit-lithium-version to keep the board small. Then sell separate adapters to accept raspberry pi hats and arduino s...
by dwight.hubbard
Tue Dec 06, 2016 7:23 pm
Forum: ESP8266 boards
Topic: Cloudmanager web management interface
Replies: 1
Views: 2373

Re: Cloudmanager web management interface

Duh, realized dropbox only showed the images if I was logged in.
by dwight.hubbard
Tue Dec 06, 2016 9:03 am
Forum: ESP8266 boards
Topic: Cloudmanager web management interface
Replies: 1
Views: 2373

Cloudmanager web management interface

Now that I have cloudmanager's mbm_sync service able to use pycharm's deploy functionality to push code to my esp8266 boards on save. I have been wanting a command UI that has more power than a REPL, more like iPython/Jupyter notebook. So I've started working on a web interface for cloudmanager and ...
by dwight.hubbard
Tue Dec 06, 2016 8:31 am
Forum: ESP8266 boards
Topic: Wrapper package to flash esp8266
Replies: 2
Views: 4438

Re: Wrapper package to flash esp8266

I just noticed that my code updates to this tool have been published as dev packages, which pip ignores by default so installs have been getting a real old version of the tool. I pushed a release package that should be able to automatically flash nodemcu, and wemosd1 boards. It can flash huzzah boar...
by dwight.hubbard
Tue Nov 29, 2016 7:54 pm
Forum: ESP8266 boards
Topic: ESPLORER unable to run a proper main.py file ...
Replies: 21
Views: 22228

Re: ESPLORER unable to run a proper main.py file ...

I'd like to add for the esp8266 the cloudmanager server I'm working on works pretty well for managing esp8266 boards, as long as you're not running windows (there is one python module it uses that doesn't support windows) The cloudmanager server is: Completely open source pip installable (no yum/apt...
by dwight.hubbard
Fri Nov 25, 2016 4:45 am
Forum: ESP8266 boards
Topic: Flashing ESP and connecting pyboard
Replies: 1
Views: 3911

Re: Flashing ESP and connecting pyboard

It would be simpler to just flash the esp8266 board with micropython and connect the temp sensor to it. You could then use the micropython mptt, redis, or socket connections to transmit the data to a server on the network. Or just run a simple web server on the esp8266 itself depending on what your ...
by dwight.hubbard
Wed Nov 23, 2016 7:51 pm
Forum: ESP8266 boards
Topic: Wrapper package to flash esp8266
Replies: 2
Views: 4438

Re: Wrapper package to flash esp8266

Just a note I had some issues flashing some newer nodemcu boards. The new boards needed to be flashed with a flash mode of dio to work properly. So I added code to automatically retry the flash operation with a different flash_mode if the board doesn't flash properly with the defaults. It now seems ...
by dwight.hubbard
Sun Nov 20, 2016 11:42 pm
Forum: ESP8266 boards
Topic: Dowloading Gigabytes reloaded
Replies: 11
Views: 15011

Re: Dowloading Gigabytes reloaded

What is the behaviour when this occurs? Is the board hanging completely?

I know I'm seeing intermittent hangs off esp8266 boards that require a hard reset to recover.
by dwight.hubbard
Thu Nov 17, 2016 5:48 pm
Forum: Programs, Libraries and Tools
Topic: redis-cloudclient/redis-cloudmanager
Replies: 2
Views: 4272

Re: redis-cloudclient/redis-cloudmanager

I've add functionality to allow cloudmanager to install packages on the managed boards without requiring upip on the board. I.E. the download, unpack, and dependency resolution of the package installation is done on the management server. I also added some changes to make it easier to get working on...
by dwight.hubbard
Fri Nov 11, 2016 9:50 pm
Forum: Programs, Libraries and Tools
Topic: import class error
Replies: 2
Views: 4569

Re: import class error

The import in your __init__.py should probably be relative, so it knows it's importing the version in the same directory as __init__.py instead of following the path which causes it to re-import the __init__.py

So inside the __init.py the import should probably be:
from .StpMotor import StpMotor