Search found 410 matches

by mattyt
Mon Feb 12, 2018 12:21 am
Forum: Drivers for External Components
Topic: I2C driver for LIS2HH12 3-axis accelerometer
Replies: 3
Views: 5228

Re: I2C driver for LIS2HH12 3-axis accelerometer

Nice, I've just bought an LIS2DH12 which looks drop-in compatible. I'll give your code a try when I receive my device!
by mattyt
Sat Feb 10, 2018 8:28 am
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 545628

Re: MicroPython on ESP32 with SPIRAM support

Just on the GPL issue, @loboris has kindly agreed to ensure that the remaining GPL files can be excluded from the build system. However this means that some GPL files will be present in the repository, even if they're unused. I was under the impression that this may still be a problem for some more ...
by mattyt
Fri Feb 09, 2018 3:55 am
Forum: ESP32 boards
Topic: Help with ESP32 micropython flashing!
Replies: 2
Views: 5348

Re: Help with ESP32 micropython flashing!

It depends a little on which board you're using but changing the '0' to '0x1000' (start of firmware address) is probably the main argument that looks incorrect. You may also need to add "--chip esp32" too, I can't recall if esptool detects the chipset. This post covers, with a little more detail, ho...
by mattyt
Sun Feb 04, 2018 2:44 pm
Forum: Drivers for External Components
Topic: M5Stack Kitchen Sink
Replies: 1
Views: 3361

Re: M5Stack Kitchen Sink

Nice, thanks! I was thinking of doing something similar, I'm glad you beat me to it. :)

By the way, rather than just on/off for controlling the TFT backlight it can be very handy to use PWM...
by mattyt
Wed Jan 31, 2018 2:46 pm
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 545628

Re: MicroPython on ESP32 with SPIRAM support

For the record, the second of my LOLIN32 Pro boards appears to be operating fine. No heat - and greeted by the friendly MicroPython 1.9.2 WebREPL when making a serial connection to the board...
by mattyt
Wed Jan 31, 2018 9:47 am
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 545628

Re: MicroPython on ESP32 with SPIRAM support

Just tried plugging in my LOLIN32 Pro again - same result. Hot - and quickly too, uncomfortable to touch within 5-10 seconds!

Inspected my soldering of the pins, all looks ok.

I bought a second one but haven't soldered the pins in yet, will try that soon...
by mattyt
Tue Jan 30, 2018 10:13 am
Forum: ESP32 boards
Topic: ESP32 maximum PWM frequency
Replies: 17
Views: 59341

Re: ESP32 maximum PWM frequency

Just to close the loop, I just noticed that the PWM wiki page is online. Thanks @loboris!
by mattyt
Tue Jan 30, 2018 4:51 am
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 545628

Re: MicroPython on ESP32 with SPIRAM support

Looking into the GPL search @tuupola provided there are three areas of concern: random .h / .c quickmail machine_hw_i2c.c All other references were to documentation discussing the GPL. I would also strongly prefer the MIT license - at least for compatibility with upstream Micropython (let alone that...
by mattyt
Wed Jan 24, 2018 2:26 am
Forum: ESP32 boards
Topic: MicroPython on ESP32 with SPIRAM support
Replies: 463
Views: 545628

Re: MicroPython on ESP32 with SPIRAM support

I have had that exact problem with one of my Lolin32 Pro's too (and I haven't yet tried the second unit that I bought). Haven't yet had a chance to diagnose the issue...will try to do so in the next couple of days.

It is a bit suspicious that they've been pulled from the store!
by mattyt
Sat Jan 13, 2018 9:34 am
Forum: Drivers for External Components
Topic: ILI9340/ILI9341 TFT Display
Replies: 37
Views: 61133

Re: ILI9340/ILI9341 TFT Display

Heya @jeffm, just wanted to say thanks for putting that code online! I've tried it on my M5Stack and it worked exactly as advertised. Thanks too to @deshipu for the ILI9341 driver. I need to look into the HW SPI issue though; without faster xfer rates the display is updated way too slowly to be of r...