File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
libraries/MySensors/examples/Esp8266Gateway Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 60
60
* Inclusion mode button:
61
61
* - Connect GPIO5 via switch to GND ('inclusion switch')
62
62
*
63
- * Hardware SHA204 signing, RF69 radio and a separate SPI flash are not supported!
63
+ * Hardware SHA204 signing and a separate SPI flash are not supported!
64
64
*
65
65
* Make sure to fill in your ssid and WiFi password below for ssid & pass.
66
66
*/
71
71
#include < MySigningNone.h>
72
72
#include < MySigningAtsha204Soft.h>
73
73
#include < MyTransportNRF24.h>
74
+ #include < MyTransportRFM69.h>
74
75
#include < EEPROM.h>
75
76
#include < MyHwESP8266.h>
76
77
#include < ESP8266WiFi.h>
@@ -97,7 +98,9 @@ const char *pass = "MyVerySecretPassword"; //
97
98
98
99
99
100
// NRFRF24L01 radio driver (set low transmit power by default)
100
- MyTransportNRF24 transport (RADIO_CE_PIN, RADIO_SPI_SS_PIN, RF24_PA_LEVEL_GW);
101
+ MyTransportNRF24 transport (RADIO_CE_PIN, RADIO_SPI_SS_PIN, RF24_PA_LEVEL_GW);
102
+ // MyTransportRFM69 transport;
103
+
101
104
102
105
// Message signing driver (signer needed if MY_SIGNING_FEATURE is turned on in MyConfig.h)
103
106
#ifdef MY_SIGNING_FEATURE
You can’t perform that action at this time.
0 commit comments