3

Clone

I bought this Arduino clone over eBay. It seems to have an extra SPI and serial ports. How do I use these?

Lord Loh.
  • 183
  • 9

2 Answers2

4

Those are not additional I2C and UART ports, those are additional connectors connected to the normal peripherals. They are used in exactly the same manner as the normal connector.

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

UNO means ATmega328. It has always only one serial and one I2C port regardless of how many connectors (or solder pads) it is hooked to. They are just parallel outputs to ATmega pins: D0 - TX D1 - RX A5 - SCL A4 - SDA

Extra pads are just for user convenience, for easier wiring.

Michal Foksa
  • 243
  • 2
  • 8