[Solved] Function repeater not working
-
@Daemon-D Hmm...where do you load the MySensors lib?
#include <MySensors.h>(this statement is missing in your sketch)
-
@Daemon-D Hmm...where do you load the MySensors lib?
#include <MySensors.h>(this statement is missing in your sketch)
-
@tekka interesting. I assume people are already using repeaters in 2.0.x so it will be safe for me to. Migrate from 1.5.4 to 2.0.0??
-
-
@tekka interesting. I assume people are already using repeaters in 2.0.x so it will be safe for me to. Migrate from 1.5.4 to 2.0.0??
-
@Daemon-D I'm not sure you got my question regarding the issue you have with your repeater node. I suggest you try the RepeaterNode sketch from the MySensors examples and post the debug log here.
@tekka said:
@Daemon-D I'm not sure you got my question regarding the issue you have with your repeater node. I suggest you try the RepeaterNode sketch from the MySensors examples and post the debug log here.
The problem was solved by a code transfer at the very beginning as a test sketch before #include
// Enable debug prints to serial monitor #define MY_DEBUG // Enable and select radio type attached #define MY_RADIO_NRF24 //#define MY_RADIO_RFM69 // Enabled repeater feature for this node #define MY_REPEATER_FEATURE``` -
@tekka said:
@Daemon-D I'm not sure you got my question regarding the issue you have with your repeater node. I suggest you try the RepeaterNode sketch from the MySensors examples and post the debug log here.
The problem was solved by a code transfer at the very beginning as a test sketch before #include
// Enable debug prints to serial monitor #define MY_DEBUG // Enable and select radio type attached #define MY_RADIO_NRF24 //#define MY_RADIO_RFM69 // Enabled repeater feature for this node #define MY_REPEATER_FEATURE``` -
@Daemon-D Can you explain how you solved the issue - I'm sure other user could also profit if they face a similar problem. Thanks.
@tekka said:
@Daemon-D Can you explain how you solved the issue - I'm sure other user could also profit if they face a similar problem. Thanks.
The problem was solved by moving to the top of the sketch exactly like the to test the sketch before #include
// Enable debug prints to serial monitor #define MY_DEBUG // Enable and select radio type attached #define MY_RADIO_NRF24 //#define MY_RADIO_RFM69 // Enabled repeater feature for this node #define MY_REPEATER_FEATURE #include <SPI.h> #include <MySensors.h>