Skip to content

Commit b100504

Browse files
committed
Fix #146
1 parent b9a5d6d commit b100504

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libraries/MySensors/examples/EthernetGateway/EthernetGateway.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292

9393

9494
// NRFRF24L01 radio driver (set low transmit power by default)
95-
MyTransportNRF24 transport(RF24_CE_PIN, RF24_CS_PIN, RF24_PA_LEVEL_GW);
95+
MyTransportNRF24 transport(RADIO_CE_PIN, RADIO_SPI_SS_PIN, RF24_PA_LEVEL_GW);
9696
//MyTransportRFM69 transport;
9797

9898
// Message signing driver (signer needed if MY_SIGNING_FEATURE is turned on in MyConfig.h)

libraries/MySensors/examples/MQTTGateway/MQTTGateway.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ byte TCP_MAC[] = { 0x02, 0xDE, 0xAD, 0x00, 0x00, 0x42 }; // Mac-address - You sh
118118
//////////////////////////////////////////////////////////////////
119119

120120
// NRFRF24L01 radio driver (set low transmit power by default)
121-
MyTransportNRF24 transport(RF24_CE_PIN, RF24_CS_PIN, RF24_PA_LEVEL_GW);
121+
MyTransportNRF24 transport(RADIO_CE_PIN, RADIO_SPI_SS_PIN, RF24_PA_LEVEL_GW);
122122
//MyTransportRFM69 transport;
123123

124124
// Message signing driver (signer needed if MY_SIGNING_FEATURE is turned on in MyConfig.h)

0 commit comments

Comments
 (0)