Hello!
Today i testet some things…
First I thought if i send over serial i got a message in the display of my T-Beam or in the Android-App but this is not so.
Im not the softwarespezialist and i don’t testet this yet, but i think wenn you send over serial pins 15/35 from one node to other nodes you get only the text out of the serial pins 15/35 an not in the display…
because…
I changed the code in the file “SerialPlugin.cpp” from
//SerialPluginRadio::SerialPluginRadio() : SinglePortPlugin(“SerialPluginRadio”, PortNum_SERIAL_APP)
to
SerialPluginRadio::SerialPluginRadio() : SinglePortPlugin(“SerialPluginRadio”, PortNum_TEXT_MESSAGE_APP)
and then i got the message in the display from the other nodes and in the androidapp on the “All” Channel
also i changed in the same file “SerialPlugin.cpp”
/*
Uncomment the preferences below if you want to use the plugin
without having to configure it from the PythonAPI or WebUI.
*/
radioConfig.preferences.serialplugin_enabled = 1;
radioConfig.preferences.serialplugin_rxd = 35;
radioConfig.preferences.serialplugin_txd = 15;
radioConfig.preferences.serialplugin_timeout = 1000;
radioConfig.preferences.serialplugin_echo = 1;
Connection settings
Putty
38400Baud
8N1
i think it shoud also work with an arduino.
br