3

I want to integrate Pololu's vl53l0x Time of Flight distance sensor into a project of mine. They created a library to interface with the vl53l0x over I2C, which works great on my Uno. The only problem is that Wire.h doesn't work on the ATtiny85.

TinyWireM is a replacement library for Wire that I think would be compatible. My question is this: how can I go about replacing all the calls to the Wire library with calls to the TinyWireM library? Is it as simple as replacing all instances of Wire with TinyWireM? Is there anything else I need to do to make the library ATtiny85 compatible?

Thanks!

asked Jan 18, 2017 at 23:04
1
  • 1
    States: Minor changes for consistency with the Arduino 1.0 Wire library (e.g. uses write() instead of send()). Buffer size slightly increased for Adafruit_LEDBackpack use. Commented Feb 10, 2017 at 22:13

2 Answers 2

1

In fact, there would be nothing to do now I guess, as TinyWireM is now included tiny boards packages.

If you just include Wire as usual, it should work as on an UNO. Except for setting a different clock, if I remember well, it is fixed to 400kHz.

answered Mar 15, 2017 at 16:52
1

I can't guarantee it will work, but it is probably possible to just modify the library. You can find the source code for that ToF sensor library here:

https://github.com/pololu/vl53l0x-arduino/blob/master/VL53L0X.cpp

The first step is to find the reference to Wire.h (line 7 in that file) and change it to TinyWireM.h. After that, you would need to find the functions that call the Wire library and replace them with the appropriate TinyWireM functions instead. Those begin at line 284 (Wire.beginTransmission(address);). You can find the source code for TinyWireM here (which should tell you all of the functions in the library):

https://github.com/adafruit/TinyWireM/blob/master/TinyWireM.cpp

So Wire.beginTransmission(address); would become TinyWireM.beginTransmission(address); and Wire.write(reg); would become TinyWireM.send(reg);

I'm not sure if that's all of the solution, but I think that's a good start.

answered Apr 6, 2018 at 23:25

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.