Hello, I only have experience with mcu for some school projects.
Now, I faced some sort of real problem which I think I can utilize mcu.
So here's the problem that I want to solve.
Since I make so many mistakes connecting pins using breadboard, I want to prevent such a problem.
What I want to do is, check a certain pin connects to the another certain pin, for example, pin 1 connects to the pin 12, with condition
wire has only 1 to 1 correspond.
wire flows 5v.
To implement this, I simply thought that if all the pins are digital with ADC, then I can just give voltage onto pin 1 and check whether pin 12 gets the voltage.
But the problem is I need 150 digital pins to measure since I want to scale up to big problems.
I currently don't have much knowledge about this domain, so I decided to ask questions and help, as well as gathering some information.
Is there anyone have a better idea to solve this problem or any products that can handle around 150 digital pins?
I looked up some PIC ADC also. but I'm not sure which one would be the best for this.
Usually you only need to check three pins - the targeted pin, and the two adjacent ones....
One approach would be - if there are no components yet on the breadboard other than the processor and it's basic supporting components - to set up each pin with INPUT_PULLUP, pull the one connection point you're testing down with a resistor of around 30k, and make sure the voltage on said pin is around half the operating voltage, and to test continuity between that connection point and the pin....
DrAzzy:
Usually you only need to check three pins - the targeted pin, and the two adjacent ones....
One approach would be - if there are no components yet on the breadboard other than the processor and it's basic supporting components - to set up each pin with INPUT_PULLUP, pull the one connection point you're testing down with a resistor of around 30k, and make sure the voltage on said pin is around half the operating voltage, and to test continuity between that connection point and the pin....
This could be one solution, check each of the wires continuity one by one, every time a person have to change the position of the connection point. But what I want to do is getting to know the whole connectivity of the breadboard, so that the person doesn't need to change the examine wire.
Am I get the point of what your trying to tell me correctly?