mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-01-07 01:00:10 +01:00
fix
This commit is contained in:
parent
c93d4cbd99
commit
77b543f607
|
|
@ -74,10 +74,10 @@ class EspDut:
|
|||
self.pigpio.set_mode(self.powerPin, pigpio.OUTPUT)
|
||||
|
||||
def begin(self):
|
||||
self.pigpio.pi.write(self.powerPin, 1)
|
||||
self.pigpio.write(self.powerPin, 1)
|
||||
|
||||
def stop(self):
|
||||
self.pigpio.pi.write(self.powerPin, 0)
|
||||
self.pigpio.write(self.powerPin, 0)
|
||||
|
||||
def writeFlash(self, bin_dir):
|
||||
logger.info("write flash")
|
||||
|
|
|
|||
Loading…
Reference in a new issue