Electronic – How to go from GPIO to digital signal

digital-logicgpioraspberry pi

I'm sitting here with my Raspberry PI and some other equipment that requires digital signal (high/low, enabled/disabled).

But the Pi only has a GPIO so to get it to work I would need a microchip of some sort (guessing)?

I'm fairly new to all this, but like to play around on my breadboard.

Could anyone point me in the right direction here? I need the PI to control a device that operates with digital high/low signal but also "enabled" / "disabled"

Best Answer

GPIO means General Purpose I/O, and that's a digital input or output (though you often can assign an alternative function to it, like I2C signals, or ADC input). Digital outputs can control other devices by using high (logical "1") and low (logical "0") levels.

"enabled/disabled", both with the "d" at the end are terms which usually describe a status, and that will normally be an output of the device.

If it's indeed an input (which usually would be named "enable/disable", without the "d") then it's likely also a logic level input, which you can control with a second GPIO pin.