added missing line for RaspberryPi in last commit

This commit is contained in:
raven-worx 2021-12-27 02:37:49 +01:00
parent 3c2cb400c5
commit 47f7afa1de

View file

@ -86,7 +86,7 @@ class RaspberryPi:
self.GPIO.output(self.RST_PIN, 0)
self.GPIO.output(self.DC_PIN, 0)
self.GPIO.cleanup()
self.GPIO.cleanup([self.RST_PIN, self.DC_PIN, self.CS_PIN, self.BUSY_PIN])
class JetsonNano: