Jump to content

Fitting an Arduino processor on a PC Motherboard

Go to solution Solved by mariushm,

Arduino uses an 8 bit  microcontroller , it's not a processor. 

 

You could create a custom circuit board that you could insert into  a PCI slot or PCI Express slot in order to take power from those slots, but communicating with the computer through those slots is very complex (it would take a lot of code to do it, maybe so much that the microcontroller may not have enough built in memory to store all that code)

You could add a SPI/i2c/UART to USB chip (serial communication) on your custom arduino board and them connect the USB created by that chip to one of the USB 2.0 headers and then your arduino could talk to the computer using serial communication, so software on the computer could send and receive data from your custom arduino board

 

When you're ready to go a step above Arduino, there are microcontrollers like PIC18 and PIC32 which have USB functionality built in and which is fast enough (can do a few mbps in both directions) which makes it possible to do neat things with them.

 

Hello everyone. First of all I would like to mention that I searched about this thread before posting it.

 

My question here is, can an Arduino Processor be fit in a standard PC Motherboard? I made some research but I found nothing at all.

 

Sorry for such a small post, I don't know what else to put in here, and thank you for any replies!

Link to comment
Share on other sites

Link to post
Share on other sites

Arduino uses an 8 bit  microcontroller , it's not a processor. 

 

You could create a custom circuit board that you could insert into  a PCI slot or PCI Express slot in order to take power from those slots, but communicating with the computer through those slots is very complex (it would take a lot of code to do it, maybe so much that the microcontroller may not have enough built in memory to store all that code)

You could add a SPI/i2c/UART to USB chip (serial communication) on your custom arduino board and them connect the USB created by that chip to one of the USB 2.0 headers and then your arduino could talk to the computer using serial communication, so software on the computer could send and receive data from your custom arduino board

 

When you're ready to go a step above Arduino, there are microcontrollers like PIC18 and PIC32 which have USB functionality built in and which is fast enough (can do a few mbps in both directions) which makes it possible to do neat things with them.

 

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×