0

I'm running a custom firmware on the ATmega16U2 (Switch-Fightstick). Is it possible to access the digital pins of the UNO from the ATmega16U2?

dda
  • 1,595
  • 1
  • 12
  • 17
skiilaa
  • 103
  • 4

2 Answers2

3

No, only the ATmega328P has access to the external pins of the Uno. You would need to write code for both the '328P and the '16U2 to communicate the pin values and changes over serial since that is the only channel connecting the MCUs.

Ignacio Vazquez-Abrams
  • 17,733
  • 1
  • 28
  • 32
1

There is a 4-pin header JP2 on the board that brings out the following pins from the '16U2

PB4, PB5, PB6, PB7

and the ICSP connector

PB1, PB2, PB3
jsotola
  • 1,554
  • 2
  • 12
  • 20