Hi Ludophot,
for
LoRa_E32 e32ttl100(2, 3,5,6,7);
and LoRa_E32 e32ttl(2, 3,5,6,7)
change only the variable name e32ttl100 in e32ttl.
I think you mean difference from
LoRa_E32 e32ttl100(2, 3,5,6,7); // Arduino RX <-- e22 TX, Arduino TX --> e22 RX AUX M0 M1
and
#include <SoftwareSerial.h>
SoftwareSerial mySerial(2, 3); // Arduino RX <-- e22 TX, Arduino TX --> e22 RX
LoRa_E22 e22ttl(&mySerial, 5, 6, 7); // AUX M0 M1
and
LoRa_E22 e22ttl(&Serial1, 5, 6, 7); // AUX M0 M1
the first and the second is the samething the difference is that in the first case I instantiate SoftwareSerial internally.
The last one you pass a reference of the HardwareSerial.
The better solution is to use HardwareSerial, because SoftwareSerial is an emulation of Hardware one, so to do the emulation need more processors time respect an hardware implementation of the Serial, and can be more fast.
But not all Arduino like have multiple Serial, so for Arduino UNO, if you want use debug and other you need to do Software one.
Bye Renzo