niv
niv

Reputation: 1

Implementing a usb interface for ATtiny816 microcontrollers

I am trying to receive and send some data from a computer to an ATtiny816 through USB. Can an ATtiny816 microcontroller communicate with a computer through USB? If yes, how should it be connected?

Upvotes: 0

Views: 258

Answers (1)

GoRo3
GoRo3

Reputation: 161

I'm not sure if this is possible. ATtiny 816 don't have hardware USB so you have to write software stack by yourself. Take a look on V-USB library for AVR chips. It's software USB stack for most of AVR chips.

I have second idea, but question is for what you need USB? If you want to parse some commands from computer you may use USB-UART converter and parse commands from UART interface.

Upvotes: 4

Related Questions