Nick Moore

Results 33 comments of Nick Moore

G'day, thanks for the bug report! I'm not totally sure where that's coming from ... can you please run 'pip freeze' to get a dump of all your package versions...

There's this: https://msdn.microsoft.com/en-us/library/windows/desktop/cc144093(v=vs.85).aspx ... but I think the approach taken by 'mpy-watch' is probably sufficient.

> It would be nice if mpy-sync transferred binaries nicely. Doesn't it?  Maybe that's specific to Windows ...

Thanks Glenn! I'll do some testing when I get a chance!

Ok so @dpgeorge and I discussed this one and we just need to run some tests to get it over the line and merged in. I'm really excited about that!...

Hi all. Is this just a race condition where the station is connecting to the AP before the AP is reconfigured? Can that be resolved by calling `ap.ifconfig()` before `ap.active(True)`?

Hmmm, this is also interesting to me as I'm looking at ESP-Now which passes small messages around in an ad-hoc manner (see #176) It has a send method and a...

Have you got some example code? Normally, you need to do something like: wlan = network.WLAN() wlan.connect('foo','bar') while not wlan.isconnected(): time.sleep(1) print(wlan.ifconfig()) ... because execution continues without waiting for the...

Sounds like a great idea. Someone earlier (LinuxConfAU, I think) brought up the idea of using the MCPWM "RMT" function to clock bits out to NeoPixel type LEDs, which seems...