*/ namespace NoccyLabs\Gpio; interface GpioMapperInterface { /** * Map the GPIO pin numbers to a more logical number set, such as that of * wiringPi. */ public function mapGpioToLogicalPin($gpio); /** * Map a logical pin number, such as the ones used by wiringPi, into the * actual GPIO pin number. * */ public function mapLogicalToGpioPin($logical); }