-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't use more than 11 pigpio.gpio() #34
Comments
Which gpio numbers are you adding? Please show the api calls. |
function returnArray(){
} |
class Entrada{
constructor(nroGPIO, nombreEntrada, boton, fuePresionado){
this.nroGPIO = nroGPIO
this.nombreEntrada = nombreEntrada
this.boton = boton
this.fuePresionado = fuePresionado
}
} |
According to the userGpioMask = 268435452 = 0xFFFFFFC, the gpio 1 and 0 are not allowed. Try a different gpio. |
Looks like that was it, if it was not i'll update. Thanks a lot. |
This happens when i use 11, everything works normally
As soon as i add 1 more, this happens
I've tryed implementing it in different ways, i just could not make it work.
The text was updated successfully, but these errors were encountered: