You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Is there a way to change the pin mapping?
I have an already wired system.
Also is there a way to have active high for some pins and active low for other?
Thanks
The text was updated successfully, but these errors were encountered:
If you haven't already tried this, I'd edit the .py file once on your raspberry. It's all out in the open, Just change the order/pins that suit your wiring. I would give it a go anyway.
define the GPIO pins that will be used
try:
if gv.platform == 'pi': # If this will run on Raspberry Pi:
GPIO.setmode(GPIO.BOARD) #IO channels are identified by header connector pin numbers. Pin numbers are always the same regardless of Raspberry Pi board revision.
relay_pins = ["11","12","13","15","16","18","22","7","3","5","24","26"]
pin_rain_sense = 8
pin_relay = 10
Or, take a look at the previous "Issues". Someone already asked that question and it was answered. #3
Hi,
Is there a way to change the pin mapping?
I have an already wired system.
Also is there a way to have active high for some pins and active low for other?
Thanks
The text was updated successfully, but these errors were encountered: