fixed RFM69_POCSAG.py
This commit is contained in:
parent
6af5663ee7
commit
f0bcb8014c
1 changed files with 1 additions and 0 deletions
|
@ -216,6 +216,7 @@ class RFM69_POCSAG(object):
|
|||
def readReg(self, addr):
|
||||
return self.spi.xfer([addr & 0x7F, 0])[1]
|
||||
def writeReg(self, addr, value):
|
||||
self.spi.xfer([addr | 0x80, value])
|
||||
def setHighPower(self, onOff):
|
||||
if onOff:
|
||||
self.writeReg(REG_OCP, RF_OCP_OFF)
|
||||
|
|
Loading…
Add table
Reference in a new issue