mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2025-12-06 07:42:00 +01:00
missing self, add requirement
This commit is contained in:
parent
921f28727b
commit
c93d4cbd99
|
|
@ -73,10 +73,10 @@ class EspDut:
|
|||
self.powerPin = powerPin
|
||||
self.pigpio.set_mode(self.powerPin, pigpio.OUTPUT)
|
||||
|
||||
def begin():
|
||||
def begin(self):
|
||||
self.pigpio.pi.write(self.powerPin, 1)
|
||||
|
||||
def stop():
|
||||
def stop(self):
|
||||
self.pigpio.pi.write(self.powerPin, 0)
|
||||
|
||||
def writeFlash(self, bin_dir):
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
pytest
|
||||
pyserial
|
||||
aprs
|
||||
pigpio
|
||||
|
|
|
|||
Loading…
Reference in a new issue