I’m in the process of designing my first custom PCB around the ATMEGA4808 (32 pin).
I’m not sure that I select the correct processor pins for my needed hardware
The ATMEGA should drive a TFT or OLED display. I know the “normal” pins used for them in an Arduino board. But not sure that I found the corresponding microcontroller pin from the data sheet.
The OLED have a 4 pin (I2C)
Its pins are VDD, GND, SCK, SDA.
display Arduino ATMEGA
pin pin
GND GND 19
VCC VCC 28+18
SCL A5 1
SDA A4 32
The 1.44 TFT have 8 pins
Its pins are VCC, GND, CS, RESET, A0 (DC), SDA (SDI)(MOSI), SCK, LED
Display Arduino ATMEGA
pin pin
VCC VCC 28+18
GND GND 19
CS D10 32
RESET D8 30
A0 D9 31
SDA D11 2
SCK D13 3
LED VCC 28+18
Are the pins I’ve selected correct?
Could you help me understand how to get from the Arduino pin name to the microcontroller pin.
Thanks