Search found 1388 matches

by deshipu
Sat Mar 05, 2016 7:48 pm
Forum: ESP8266 boards
Topic: Recommended IDE?
Replies: 10
Views: 17714

Re: Recommended IDE?

Yes, the ETA is two months.
by deshipu
Sat Mar 05, 2016 3:29 pm
Forum: ESP8266 boards
Topic: Differences between ESP8266 and ESP8266EX.
Replies: 6
Views: 42808

Re: Differences between ESP8266 and ESP8266EX.

Not really sure what are the exact differences, all I found is this: https://github.com/esp8266/esp8266-wiki ... 6-Versions
by deshipu
Fri Mar 04, 2016 10:33 pm
Forum: ESP8266 boards
Topic: Recommended IDE?
Replies: 10
Views: 17714

Re: Recommended IDE?

With the current micropython boards (except for the WiPy), they just show up as a USB disk when you connect them to your computer, and you can edit the files directly there using whatever text editor you prefer. This won't work with ESP8266, as it doesn't have native USB support. On the WiPy, you al...
by deshipu
Fri Mar 04, 2016 2:47 pm
Forum: ESP8266 boards
Topic: Online Documentation
Replies: 12
Views: 11254

Re: Online Documentation

Thanks, I think this is enough for the time being, as long as people can find it here!
by deshipu
Fri Mar 04, 2016 11:44 am
Forum: ESP8266 boards
Topic: Online Documentation
Replies: 12
Views: 11254

Online Documentation

UPDATE : Current docs (may be outdated and lagging behind the latest development until GA release): http://micropython.org/resources/docs/en/latest/esp8266/ _____________________________________________________________ Hi, now that this is going to be an official port, it would be nice to put the d...
by deshipu
Wed Feb 24, 2016 12:47 pm
Forum: WiPy and CC3200 boards
Topic: Timer example not working
Replies: 32
Views: 36600

Re: Timer example not working

Thank you, I will test it in detail when I have a chance. I can't help to notice that some of the timers have been removed from the pinout diagram and now we only have 4 pwm pins available, is that right?
by deshipu
Sat Feb 20, 2016 12:10 am
Forum: General Discussion and Questions
Topic: Detailed code for the pyb.Servo library
Replies: 4
Views: 3910

Re: Detailed code for the pyb.Servo library

My guess is that you are resetting the timer, instead of only changing the duty cycle. But really hard to tell without seeing the code.
by deshipu
Fri Feb 12, 2016 8:38 am
Forum: WiPy and CC3200 boards
Topic: No more documentation for WiPy?
Replies: 1
Views: 2855

No more documentation for WiPy?

I recently wanted to re-check some things in the WiPy documentation, and was quite surprised that all links to the docs have been removed from the wipy.io website, and replaced with some marketing videos instead. Does that mean that it's no longer official? If so, where should we go looking for info...
by deshipu
Fri Feb 12, 2016 8:31 am
Forum: WiPy and CC3200 boards
Topic: Controlling hobby servos
Replies: 21
Views: 24661

Re: Controlling hobby servos

You create the pin object just to set the pin in the AF mode 9, which is PWM. Then it's bound to a specific channel of a specific timer.
by deshipu
Fri Feb 12, 2016 8:22 am
Forum: WiPy and CC3200 boards
Topic: Timer example not working
Replies: 32
Views: 36600

Re: Timer example not working

I wasn't able to make it generate a 50Hz PWM signal, which is what the servos need. It seems that you can generate higher frequency signal, which is fine for controlling motors and LEDs.