Search found 6 matches

by timotet
Fri Jun 15, 2018 7:26 pm
Forum: ESP8266 boards
Topic: ssd1306 display scroll
Replies: 10
Views: 15220

Re: ssd1306 display scroll

@bergpb Please post a examples how to use horizontal scroll. I haven't worked on this in awhile, it worked great for me. Good luck. # example for ssd1306 with module from here https://github.com/timotet/SSD1306 # runs under micropython version 1.8.7 # import machine from machine import Pin, I2C impo...
by timotet
Wed Mar 15, 2017 4:25 am
Forum: ESP8266 boards
Topic: ssd1306 display scroll
Replies: 10
Views: 15220

Re: ssd1306 display scroll

I modified the micropython SSD1306 library and added hardware scroll.
It seems to work great for me. Try it out.

https://github.com/timotet/SSD1306
by timotet
Mon Oct 10, 2016 8:46 pm
Forum: ESP8266 boards
Topic: Static IP Possibility
Replies: 14
Views: 21800

Re: Static IP Possibility

deshipu
Thanks for the concise answer!

I will try again when I am home.
by timotet
Mon Oct 10, 2016 5:07 pm
Forum: ESP8266 boards
Topic: Static IP Possibility
Replies: 14
Views: 21800

Re: Static IP Possibility

Hi Guys, I am trying to write a tcp server and set it up with a static ip. Ultimately I would like to have a couple of esp8266 modules as server and client trade info. I configured it the same way the above post does, but cannot get the client to connect. I am just using netcat or my phone to try an...
by timotet
Sat Oct 01, 2016 7:52 pm
Forum: ESP8266 boards
Topic: Simple controller
Replies: 2
Views: 2889

Re: Simple controller

I'm no expert by any means but Ive been trying this too. Whenever I tried to bind with the host being anything but "0.0.0.0" it just would not work. And I think it's good practice to use a higher port number like 41152. Here is what I've been using : [code] port = 41152 host = '0.0.0.0' def serverIn...
by timotet
Thu Apr 09, 2015 4:43 pm
Forum: General Discussion and Questions
Topic: STAccel script in STM32F4 DISC
Replies: 12
Views: 12070

Re: STAccel script in STM32F4 DISC

I just tested this myself, git the same error and tracked it down. It seems that the call to STAccel.read_id() in STAccel.__init__() always returns 255 instead of the correct value 63. In fact, the first read on the SPI bus after creating the pyb.SPI instance seems to always return 255. So I just f...