0

I would like to use those two components for an upcoming project :

I especially like the fact that they’re so tiny.

Could I connect them directly to an Arduino board or some other well-known microcontroller ?

smajli
4723 silver badges12 bronze badges
asked Sep 27, 2019 at 20:59
2
  • Both of those sensors use I2C to communicate, so yes you can connect them to Arduino. but you gonna need a library and if the library doesn't exist you probably have lots of coding ahead of you. good luck. TMP117 library Commented Sep 27, 2019 at 21:49
  • Actually there are Arduino libraries available online for both of these sensors, which is one of the reasons why I chose them Commented Sep 28, 2019 at 6:15

1 Answer 1

1

Yes, the sensors will work with microcontroller(s). What you look for is the interface they use. In this case it is I2C interface. Be careful thou: You have to check voltage levels your microcontroller works with and selected sensor voltage level. Some of the Arduino works with 5V levels and some sensors may accept max of 3.3V or 4.5V on I2C pins. This is why you would need either:

  • Choose 3V powered microcontroller
  • Use 5V powered microcontroller (like Arduino Uno) and voltage level converter

Also worth to note that these two sensors would need some additional circuitry to work with your microcontroller. Before any commitment I would try to find a development board (a board with mentioned circuitry with easy to acces pins for providing necessary signals/voltages/ground/etc).
Good luck!

answered Sep 28, 2019 at 9:36
0

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.