Electronic – arduino – ATtiny or similar microcontroller with a UART port

arduinouart

I'm looking for a way to connect a sensor and control network to an Arduino, and I'm thinking serial communications through the UART port may be the way to go.

I've also seen the ATtiny chip, and I think that it, or another chip like it, could do very nicely for a node in the sensor and control network.

Are there any ATtiny or similar microchips microcontrollers that have UART ports?

Best Answer

Go to the Microchip product page:

https://www.microchip.com/ParamChartSearch/chart.aspx?branchID=30047

and select "Show all products" (if not only New/Popular items will be displayed).

And click on the Product Search tab you'll find the microcontroller selector. Using the scrollbar within the page (it's in an odd spot) scroll across to UART and pull the slider down to one and that will show the ATtiny devices with a UART (currently 7 devices).

Most manufacturers and some suppliers have similar search facilities which are normally called a parametric search. Also as mentioned in some comments you can also look at a software / bit-banged serial interface if suitable for your project and then just about any microcontroller will do. That's just implementing the serial protocol in software using regular I/O pins.

Related Topic