So first I have connected an USB cable from my PC to the Arduino UNO USB port to load the serial GW sketch successfully as per the log in the serial monitor
0;255;3;0;9;MCO:BGN:INIT GW,CP=R-NGA--,VER=2.0.1-beta
0;255;3;0;14;Gateway startup complete.
0;255;0;0;17;2.0.1-beta
0;255;3;0;9;MCO:REG:NOT NEEDED
0;255;3;0;9;MCO:BGN:STP
0;255;3;0;9;MCO:BGN:INIT OK,ID=0,PAR=0,DIS=0,REG=1
Then I connected the 2nd USB cable to the virtual port "software serial pin10/pin11/GND" to the Arduino UNO , without USB to TTL serial convertor , and to the windows 10 PC ... but the virtual USB port is not recognized by the PC (USB device unknown).
--- code ----------
#include <MySensors.h>
#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); // RX, TX
void setup() {
// set the data rate for the SoftwareSerial port
mySerial.begin(9600);
mySerial.println("Hello, SoftwareSerial?");
An USB to TTL serial convertor is required on Arduino Uno side in such configuration and it has been ordered.
=> Waiting for the shipment