@frapell did you replace the power supply of the gateway?
Group Details Private
Code Contributor
-
RE: My rPi gateway suddenly stopped working, no idea what else to try...
-
RE: isMetric incorrect on new 2.3.2 serial gateway with HomeAssistant
@Dave-Myers iirc nodes are supposed to perform the conversion themselves. I know at least the gateway does not take care of this.
-
RE: Ethernet Gateway Using PCBWAY board Fifisoft57
@Newzwaver said in Ethernet Gateway Using PCBWAY board Fifisoft57:
!TSM:INIT:TSP FAIL
This indicates there's a communication issue with the radio module. Start your debugging there.
-
RE: Is there a timing issue with "faster" platforms?
@Njwyborn sorry, I don't know. If the stack is called recursively, something is seriously wrong and behavior is undefined I guess.
-
RE: Is there a timing issue with "faster" platforms?
@Njwyborn judging from the logs, i would suspect that you're at least suffering from this issue https://github.com/mysensors/MySensors/issues/1458, which unfortunately is still open.
-
RE: 💬 Building a WiFi Gateway using ESP8266
@Serj-Sam there is a pull request included in that pr. Once this is merged it will be available in development, later in the next release.
If you just downgraded the core, that is persistent until you upgrade the core to 3.x again. -
RE: 💬 Building a WiFi Gateway using ESP8266
@Serj-Sam you could very well have run into the incompatibility of mysensors with the latest esp arduino core 3.x (see eg https://github.com/mysensors/MySensors/issues/1496)
Easiest solution is to downgrade the esp arduino core to 2.x -
RE: 2021 EU customs regulatory changes — where should I buy now?
@benhub some sellers indeed have EU warehouses, which are now the preferred ordering locations for EU citizens. I also don't know how to easily find them on eg aliexpress. I kind of run into them by accident...
Additional benefit is shorter shipping times, but products stocked are limited in general. -
RE: WeMos D1 Mini Gateway + Relay
@anderBAKE said in WeMos D1 Mini Gateway + Relay:
#define RELAY_PIN 1
That should be
#define RELAY_PIN D1
When something doesn't work it's best to strip a sketch to the bare minimum and get that to work first, eg setup the pin, then switch the relay on and off from the main loop(), without including mysensors or anything else.
-
RE: WeMos D1 Mini Gateway + Relay
@anderBAKE are you sure the code to actually toggle the relay gets executed? You could add some debug statements or toggle the led instead.
Btw. I would preferif (message.getBool() == true)
Or even
if (message.getBool())