DIY GUY Chris
Published © Apache-2.0

Customized Host Board for Arduino Portenta

Are we done yet with Arduino! Hummm let me tell you that we have just started because the Pro Arduino board is here.

BeginnerFull instructions provided2 days2,218
Customized Host Board for Arduino Portenta

Things used in this project

Hardware components

Arduino Portenta H7
Arduino Portenta H7
×1
JLCPCB Customized PCB
JLCPCB Customized PCB
×1
Dual H-Bridge motor drivers L293D
Texas Instruments Dual H-Bridge motor drivers L293D
×1
MAX31820 1-Wire Ambient Temperature Sensor
Maxim Integrated MAX31820 1-Wire Ambient Temperature Sensor
×1
LED Heat Sink, SMD LED Arrays
LED Heat Sink, SMD LED Arrays
×1

Software apps and online services

Arduino IDE
Arduino IDE
Altium Designer

Hand tools and fabrication machines

Hot Plate, 800 W
Hot Plate, 800 W
Soldering Station, 110 V
Soldering Station, 110 V
Solder Wire, Lead Free
Solder Wire, Lead Free
Solder Paste, Rework
Solder Paste, Rework

Story

Read more

Custom parts and enclosures

BOM

Here is the BOM file that you will need to order the electronics components

Schematics

Schematic

I'm dropping the PDF version of the Throne schem

Code

The Blink LED code that I used

Arduino
Make sure that you are using the pin label the appropriate way as it shows the code that we've made for the demonstration
void setup() 
{
   pinMode(PC_7, OUTPUT);
}

void loop() 
{
   digitalWrite(PC_7, HIGH);
  delay(200);
  digitalWrite(PC_7, LOW);
  delay(200);
}

Credits

DIY GUY Chris

DIY GUY Chris

48 projects • 331 followers
I'm having fun while making electronics projects, I am an electrical engineer in love with "Do It Yourself" tasks.
Thanks to JLCPCB and Altium Designer.

Comments