Fix in power level
This commit is contained in:
parent
82fc95a00d
commit
9de6143724
1 changed files with 6 additions and 5 deletions
|
@ -37,11 +37,12 @@ type Data struct {
|
|||
// NewDevice creates a new device
|
||||
func NewDevice(spi *SPIDevice, gpio gpio.Pin, nodeID, networkID byte, isRfm69HW bool) (*Device, error) {
|
||||
ret := &Device{
|
||||
SpiDevice: spi,
|
||||
gpio: gpio,
|
||||
network: networkID,
|
||||
address: nodeID,
|
||||
isRFM69HW: isRfm69HW,
|
||||
SpiDevice: spi,
|
||||
gpio: gpio,
|
||||
network: networkID,
|
||||
address: nodeID,
|
||||
isRFM69HW: isRfm69HW,
|
||||
powerLevel: 31,
|
||||
}
|
||||
|
||||
log.Println("before setup")
|
||||
|
|
Loading…
Add table
Reference in a new issue