"Choose the Serial Port" error with MySensors and RFXtrx433?
-
Hi!
I'm just starting with MySensors and have built a Serial Gateway using a Arduino Nano. I have a Vera Edge with a RFXtrx to control my 433mhz devices. I have a powered USB-port connected to the Veras single USB port to be able to have both RFXtrx transceiver and USB drive for DataMine2.
I have successfully uploaded the MySensors files for UI7 and created the MySensors device.
However, after I change the baud rate to 115200 for the MySensors device and reload the Vera, my RFXtrx stop working. I get a "RFXtrx plugin : Choose the Serial Port" error message. When I change the baud rate for the RFXtrx to 38400 (as it should be) and reload the My Sensors device stop working and I get a "MySensors plugin : Choose the Serial Port" error.
It seems I can only have either MySensors or RFXtrx enabled at the same time? The port seems to be the same (3481)? Is this the issue?
Is it possible to have both MySensors and RFXtrx on Vera?
-
I borrow this thread...
When I plug in my (mysensor Gateway) direct into vera edge it works perfect.
When I plug in my (RFXtrx) direct into vera edge it works perfect.When I connect them to my usb hub that I bought, no one of them will work?
Mysensors GW are not changing when I click on start and stop for inclusion mode.
RFXtrx are not sending commands to the lamps. I click on one lamp that is off, and nothing happends.It is a 4-ports 3.0 USB hub with separate power suply, brand new.
Could someone help me?
-
It should be possible to have both at the same time. Maybe the two devices draw too much power from the Vera USB port?
@hek: I don't think so. The hub is powered (5V, 2.5A) and the RFXtrx works fine. Does the Serial Gateway draw very much power?
Have ANYONE got RFXtrx and MySensors Serial Gateway to work using an USB hub? Is it possible at all?
-
It depends on if you use the amplified radio or not. The vanilla version shouldn't be much of a problem.
If the both work individually I can't see any other problem (unless Vera has trouble enumerating more than one usb device).
Maybe you could measure the power consumption on the devices.
-
Hmm... I'm using the vanilla version av the gateway. Measured the power consumption and the powered USB hub should be able to provide enough power for both devices. There must be some configuration error, but I can't figure out what. The Vera can use both the RFXtrx and a USB drive (for logs) at the same time, also using the single USB port with a powered hub.
I don't have the technological skill to troubleshoot this, but until you can confirm there is another user that have gotten Vera to work with both a connected RFXtrx AND MySensors gateway this seems to be an issue.
-
The next logical step would probably be to ssh into the Vera box to see which devices hat pops up using
lsusbwhen you plug in/out devices.But as the vera Luup engine is closed source we don't really know what it does.
Do you have another usb hub laying around to test with?
-
I think I have another powered hub laying around! Will try when I get home from work. I can check the 1usb-folder as well.
-
Hmm... I'm using the vanilla version av the gateway. Measured the power consumption and the powered USB hub should be able to provide enough power for both devices. There must be some configuration error, but I can't figure out what. The Vera can use both the RFXtrx and a USB drive (for logs) at the same time, also using the single USB port with a powered hub.
I don't have the technological skill to troubleshoot this, but until you can confirm there is another user that have gotten Vera to work with both a connected RFXtrx AND MySensors gateway this seems to be an issue.
@Aron-Sjöberg Did you solve your problem? I have a mysensors serial gateway, a rfxtrx433e and a USB stick connected to my Vera (Edge) through an externally powered USB hub (plexgear). They all work just fine.
-
Do you have this one?
I don`t have a second hub to try with so I need to buy a new one...
-
No, still have the same issue with port conflict with the RFXtrx... :(
I'm going to try another hub and build the serial gateway again.
-
Argh!
I finally received my new USB-hub and tried a new serial gateway I built.
I STILL get the same error. I can't seem to have both my RFXtrx433E and the MySensor gateway connected (and working) at the same time.
@Magnus, could you post a screenshot of your settings in Vera Edge?
-
I bought this one: https://www.kjell.com/se/sortiment/dator-natverk/datortillbehor/usb-tillbehor/usb-hubbar/plexgear-usb-hubb-7-vags-med-stromforsorjning-p68616
Now all is working fine for me.
-
Argh!
I finally received my new USB-hub and tried a new serial gateway I built.
I STILL get the same error. I can't seem to have both my RFXtrx433E and the MySensor gateway connected (and working) at the same time.
@Magnus, could you post a screenshot of your settings in Vera Edge?
@Aron-Sjöberg
My config below:

-
@Aron-Sjöberg
My config below:

-
@Magnus just a wild guess.
Did you try to compile the MySensors GW with baudrate set to 38400 so they both use the same baudrate?
@BartE Hmm... I didn't know you could choose the baudrate? I just followed the instructions on the website (https://www.mysensors.org/build/serial_gateway) but when I check the code I can clearly read that there is something in the sketch about the baud rate:
// Define a lower baud rate for Arduino's running on 8 MHz (Arduino Pro Mini 3.3V & SenseBender) #if F_CPU == 8000000L #define MY_BAUD_RATE 38400 #endifHowever, I use the recommended Arduino Nano for my Vera Serial Gateway, not Arduino Pro Mini 3.3V or SenseBender.
How would I change the baud rate for the MySensor gateway if I can't use 38400 because it is used by my RFXtrx433E?
-
@Aron-Sjöberg
My config below:

@Magnus Thank you for your trouble! Did you photoshop your screenshot or can you configure two different serial port devices at the same time? I only have one instance I can change settings for?
Otherwise my settings seems to be the same as yours.

-
@BartE Hmm... I didn't know you could choose the baudrate? I just followed the instructions on the website (https://www.mysensors.org/build/serial_gateway) but when I check the code I can clearly read that there is something in the sketch about the baud rate:
// Define a lower baud rate for Arduino's running on 8 MHz (Arduino Pro Mini 3.3V & SenseBender) #if F_CPU == 8000000L #define MY_BAUD_RATE 38400 #endifHowever, I use the recommended Arduino Nano for my Vera Serial Gateway, not Arduino Pro Mini 3.3V or SenseBender.
How would I change the baud rate for the MySensor gateway if I can't use 38400 because it is used by my RFXtrx433E?
@Aron-Sjöberg said in "Choose the Serial Port" error with MySensors and RFXtrx433?:
Add this line
#define MY_BAUD_RATE 38400above the #include <SPI.h>
-
Have you restart luup after you connected both usb-ports?