Search found 4 matches

by idimitrakopoulos
Sat Jun 03, 2017 10:43 pm
Forum: ESP8266 boards
Topic: espedite - A smart micropython codebase deployer
Replies: 0
Views: 1655

espedite - A smart micropython codebase deployer

Hi, This small tool deploys your micropython code on your ESP board and it can optionally compile it too. Deploys full code structure (files/folders) on your board Allows you to specify which files to skip from the deployment process During development, espedite will deploy only the changed files on...
by idimitrakopoulos
Tue Mar 14, 2017 11:21 pm
Forum: ESP8266 boards
Topic: ssd1306 display scroll
Replies: 10
Views: 15203

Re: ssd1306 display scroll

Hello, I made a quick scroll-down function, not the smoothest scroll but for an ESP its good. Here's the function import time def scroll_down_show(oled, line_to_show): for y in range(0, -6, -1): time.sleep(0.01) oled.scroll(0, y) if y == -5: oled.text(line_to_show, 0, 15) oled.show() Here's how to u...
by idimitrakopoulos
Fri Oct 21, 2016 8:27 pm
Forum: ESP8266 boards
Topic: illuminOS - An open-source MicroPython based SDK
Replies: 2
Views: 3018

Re: illuminOS - An open-source MicroPython based SDK

Hi, not sure.. It should work on pyboard, wipy, microbit, plain esp8266 board.
by idimitrakopoulos
Thu Oct 20, 2016 9:02 pm
Forum: ESP8266 boards
Topic: illuminOS - An open-source MicroPython based SDK
Replies: 2
Views: 3018

illuminOS - An open-source MicroPython based SDK

Hi all, I entered the magic world of microcontrollers a few months ago and being a developer (who sucks at hardware related stuff) I had quite a learning curve. So today I'm really happy to share with you: illuminOS https://github.com/idimitrakopoulos/illuminOS An open-source MicroPython based SDK f...