setting rssithresh

This commit is contained in:
S. Seegel 2017-03-19 15:36:47 +01:00
parent 07bb9318df
commit 4e848b1f1f

View file

@ -13,9 +13,11 @@ rfm.SetParams(
Freq = 868.300, #MHz center frequency
Datarate = 9.579, #17.241, #kbit/s baudrate
ModulationType = rfm69.FSK, #modulation
Deviation = 30, #30 kHz frequency deviation
SyncPattern = [0x2d, 0xd4], #syncword
Bandwidth = 200, #kHz bandwidth
LnaGain = 0x88
LnaGain = 0x88,
RssiThresh = 220
)
print hex(rfm.ReadReg(0x07))
@ -29,4 +31,4 @@ while 1:
data = rfm.ReceivePacket(7)
obj = rawsensor.CreateSensor(data)
print(str(obj))