-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modifications to work with the ESP32 #2
Comments
Oh, also! |
@PeterAJansen thanks for the info! I had a question about what version of the arduino-esp32 toolkit you're using and what method you used to install it? I wasn't able to get this to work properly with an esp32, but swapping my project with an esp8266 worked ok. I was wondering if I just maybe have an incorrect version or some other toolchain issue. |
For anyone that runs into trouble with this sensor and the ESP32, I found right now the ESP32 Arduino I2C core has some issues with timing sensitive sensors. However I did get it to work and read pixel data from this MLX90640 sensor using the fork of the ESP32 Arduino core here: https://github.com/stickbreaker/arduino-esp32 There's a ton of background info in the thread here on what this fork does and why it's necessary: espressif/arduino-esp32#811 The root issue is that calling Wire.endTransmission(false) and then Wire.read() is far too slow and throws off the I2C system on the ESP32. The fork adds a new Wire.transact call that does all this at once and keeps the I2C system working, among other things. So to work with the ESP32 and this really slick sensor replace your ESP32 Arduino core with the fork mentioned above. Then modify your sketch's MLX90650_I2C_Driver.cpp's MLX90650_I2CRead function to look like (notice the commented out endTransmission and replacement with the new transact call):
With this I'm getting great data from this (very cool) sensor on an ESP32 (the M5Stack system, a ESP32 + case + ILI9341 TFT... perfect platform for a little IR sensor camera). Here's an example of the basic test sketch output:
Hopefully this helps someone else! And hopefully at some point the ESP32 Arduino core matures so that the I2C bus works well without the need for the fork and transact changes. |
Thank you for this! I have a project that has five I2C peripherals and three of them don't work on with the current espressif32 platform (or any of the older ones), what a bummer. Hopefully, this gets worked out soon as I2S is such an important protocol in many hardware products. |
Very useful! Using ESP32 fork referenced above with "transact" and I2C driver.cpp mods to the MLX90640 works for me on ESP32 but still get no ack serial message from the 2nd wire.begin in the original .cpp code which is not mentioned, so I left unchanged? Is there a complete working code example for the Sparkfun MLX read example somewhere for newbies? Is this nicely working fork likely to be merged with the regular code as mentioned in Nov. 2017? |
so this project can work with nodemcu ? |
Nodemcu is ESP8266 is ESP-12 not -32 so not quite the same topic? My experience with Wemos D1 mini ESP-12 (above) was not the best; it sorta worked. Others who created this thread might advise whether these I2C mods would help; the MLX read seems generally tricky with I2C reads. |
@Melmac2 This is updated code for V1.0.1 of the Arduion-Esp32, my fork (stickbreaker/arduino-esp32) is outdated, and will be updated to follow the main repo. int MLX90640_I2CRead(uint8_t _deviceAddress, unsigned int startAddress, unsigned int nWordsRead, uint16_t *data)
{
// nWordsRead must be <= 32767
Wire.beginTransmission(_deviceAddress);
Wire.write(startAddress >> 8); //MSB
Wire.write(startAddress & 0xFF); //LSB
Wire.endTransmission(false);
i2c_err_t error = Wire.readTransmission(_deviceAddress, (uint8_t*) data, nWordsRead*2);
if(error != 0){//problems
Serial.printf("Block read from sensor(0x%02X) at address=%d of %d uint16_t's failed=%d(%s)\n",
_deviceAddress,startAddress,nWordsRead,error,Wire.getErrorText(error));
}
else { // reverse byte order, sensor Big Endian, ESP32 Little Endian
for(auto a = 0; a<nWordsRead; a++){
data[a] = ((data[a] & 0xff)<<8) | (( data[a]>>8)&0xff);
}
}
return 0;
} Chuck. |
Does there modifications still work or is there better way to get this working by now? I have tried to make this to work for 4 weeks now without luck. MLX90640 IR Array Example But these might be nonsese after all. I would like if winter in Finland was that hot, but no. |
I think your readings are that high because Finland is either in hell or
you're on way there for taking pictures in the sauna:)
I got two sensors working well on basic ESP32 dev modules about 10 months
ago, one Sparkfun board, one raw sensor.Neither defective. Are you using
3.3V; GY modules don't seem to have the RC circuitry of Sparkfun or mfr?
Mine failed on the parameter extraction step until made the Stickbreaker
I2C code mods. Is it possible later versions of Arduino or ESP32 library
don't have the same code (left stranded?) and maybe ;you have to go back
to earlier versions to work?
Notice more recent tutorials and other comments such as:
https://www.instructables.com/id/Infrared-Thermal-Imaging-Camera-With-MLX90640-and-/
And M5stick module/code.
Hopefully useful
Mel
…On Fri, Nov 22, 2019 at 3:33 PM Perttu Piirainen ***@***.***> wrote:
Does there modifications still work or is there better way to get this
working by now?
I have tried to make this to work for 4 weeks now without luck.
I have two different GY-MCU90640 modules for the sensor,55 FOV and 110FOV.
I have tried 3 different ESP32 boards(lOLIN32,ESP-32S and bare ESP32
module) . Arduino IDE is version 1.8.10
I have tried this with and without these modifications and with official
and with stickbreaker core.
The nearest working condition is output to the serial from the
BasicReadings sketch :
------------------------------
MLX90640 IR Array Example
MLX90640 online!
Parameter extraction failed
Pixel 0: 2895.16C
Pixel 1: 2571.75C
Pixel 2: nanC
Pixel 3: 2319.59C
Pixel 4: nanC
Pixel 5: nanC
Pixel 6: 2646.03C
Pixel 7: 2614.28C
Pixel 8: 1277.65C
Pixel 9: 2614.38C
------------------------------
But these might be nonsese after all. I would like if winter in Finland
was that hot, but no.
every else sketch results in Error -8.
I can use an i2c scanning sketch and can see a device at 0x33.
The jamesdanielv's Arduino code can read the calibration data from the
sensor, but does not show any results in any other sketch. So the I2C
transfer should be working?
Are some of these sensors defective? I have seen multiple cases where
sensor just refuses to work.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#2?email_source=notifications&email_token=AK4UD7UYSQ2UA4Q4IG5ZCW3QVA63NA5CNFSM4FGSXVM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEE6ZK6Y#issuecomment-557684091>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AK4UD7UVTX4RR5FC7NNX6BLQVA63NANCNFSM4FGSXVMQ>
.
|
@PPiirainen ,@Melmac2 my personal branch stickbreaker/arduino-esp32 is moribund. All of its functionality has been incorporated into the main espressif/arduino-esp32 since version 1.0.1. Included in the low level Hardware Abstraction Layer is a comprehensive suite of debugging code. This debugging code is documented in the I am willing to help you diagnose the actual faults. Chuck. |
Thank you for your fast response and generous ansvers!
I have no idea about this. I basically do exactly as in the stoppi71 Instructables says. I have the exact same parts as he does, in the same configuration.
I tried to install esp32 board package from 1.0.0 to 1.0.4 from the Boards manager and by git install. None of these worked.
This went high-level in a hurry :o |
The narrow pulses could just be the ACK hand over between the master and slave. You will have to match the spike on SDA to the Clock on SCL if the spike happens after the SCL goes low at the start of the ACK bit period, you are just seeing the hand over. If the Master is sending data (Write) it has to release drive of SDA after the 8th data bit cycle has completed (SCL goes Low), then the Slave waits a few micro seconds after it sees SCL Low then it starts driving SDA Low to form the ACK bit. Between the Master Releasing SDA and the Slave starting to drive SDA for the ACK you may see this spike. It is norrmal. The spike only appears if the 8th bit is Low. Chuck. |
@PPiirainen You are going to need to debug the failing transaction. I would connect 4 channels to the ESP32 SDA,SCL, and two debug pins, lets call them TransStart and Error. In your code I would toggle TransStart evertime you do a sample capture, then if you detect an error trigger Error. Look for the Error pulse in your logic analyzer capture then backup until you see the TransStart pulse decode the I2C data between the markers. That would be a good starting place. SparkFun Sells a simple USB 25Mhz 8 channel Logic Analyzer cheap, you can also get copies from Ali/Banggood. It is well worth the $20. Chuck. |
Hi . For I2c to work you need the pull-up resistors on the data lines, and
supply line caps of the MLX datasheet application, or as per Sparkfun
board schematic. Should be able to tell visually if they are on your board
I expect?
Good luck
Mel
…On Wed, Nov 27, 2019 at 7:45 AM Perttu Piirainen ***@***.***> wrote:
Thank you for your fast response and generous ansvers!
@Melmac2 <https://github.com/Melmac2>
"GY modules don't seem to have the RC circuitry of Sparkfun or mfr?
I have no idea about this. I basically do exactly as in the stoppi71
Instructables says. I have the exact same parts as he does, in the same
configuration.
Mine failed on the parameter extraction step until made the Stickbreaker
I2C code mods. Is it possible later versions of Arduino or ESP32 library
don't have the same code (left stranded?) and maybe ;you have to go back
to earlier versions to work?
I tried to install esp32 board package from 1.0.0 to 1.0.4 from the Boards
manager and by git install. None of these worked.
I also tried make the modifications suggesed by @tdicola
<https://github.com/tdicola>. The normal libary did not compile, and with
the @stickbreaker <https://github.com/stickbreaker> branch, the problem
remains the same.
I got my hands on a logic analyser and checked the I2C line. In the I2C
address checker I can see the ACK bit working correctly.
[image: espi2cscannerresulACK]
<https://user-images.githubusercontent.com/35927392/69722866-d34ebd80-1120-11ea-9d30-c54ba890629d.jpg>
In the Basic_readings and the program from the instructables the I2C seems
to try something first and always get to a point where after h10 there
would be NAK and after the signal gets into a loop. (and also every time I
saw h10 there would be NAK and re-start) in the loop the signal is
repeating the last bit.
[image: basicreadingsH10NAK]
<https://user-images.githubusercontent.com/35927392/69723633-bc10cf80-1122-11ea-9855-d00431757787.jpg>
In oscilloscope my attention caught the two extremely narrow lines in the
signal line that seems out of place.
[image: scope1]
<https://user-images.githubusercontent.com/35927392/69723418-26754000-1122-11ea-8866-88be1dd7aa5d.jpg>
@ stickbreaker Included in the low level Hardware Abstraction Layer is a
comprehensive suite of debugging code. This debugging code is documented in
the Wire() library here. If you enable these compile time defines, the
Serial log will list complete i2c flow failures.
This went high-level in a hurry :o
I enabled the debug buffer and set the core debug level to verbose. but
didn't have time to dig deeper. The documentation seems intimidating and i
probably need some direct examples of this code and work to get this
working.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#2?email_source=notifications&email_token=AK4UD7WLDPUMBJEWN6STPGDQVZTVPA5CNFSM4FGSXVM2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFJMMCI#issuecomment-559072777>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AK4UD7RF4SQHLFHOD5H5PZTQVZTVPANCNFSM4FGSXVMQ>
.
|
hi, i tried with the latest Arduino 1.8.15, and the stickbreaker fork (from 2018?), and seems not working on ESP32. The ESP32 keep on rebooting after uploading the code. Anyone know how to solve this? |
error msg 20:36:20.182 -> Rebooting... |
ok, got it working with codes from here use Arduino IDE standard ESP32 board bought a simple MLX90640 board from Aliexpress |
Thanks for creating this!
Here are a few issues and fixes I noted when getting this to compile for the ESP32 (Arduino IDE 1.8.5), in case anyone else attempts the same:
MLX90640_I2C_Driver.cpp:
Add #include<Arduino.h> at the top, or it will throw errors on Serial() for the debug print statements. (Alternatively, these can be commented out).
Setup() functions of example code:
Wire.setClock(400000): This seems to make communication unreliable, possibly due to some potential issues with the ESP32 Arduino I2C library itself (I noted some issues mentioned on github, but didn't dig too deep). Commenting this out so that it uses the default 100khz speed seems to get it working. A speed of 200Khz also seems to work some of the time.
I2C reliability:
Sometimes it gives a 'failure to find the MLX90640 at the default I2C address' error, and sometimes it doesn't -- when this happens, resetting the ESP32 (using the reset button) seems to get things working after some number of resets. I still haven't figured this one out yet.
The text was updated successfully, but these errors were encountered: