Marc achieves a much further range with the custom built vee antenna. Works out at over a kilometer including through trees and buildings. I am hoping that open air should be well over 10km.
This is using the OrangeRX OpenLRS receiver modules with one configured as the transmitter.
Lots more RCHacking on my website.
http://www.rchacker.com
Episodes list.
http://www.rchacker.com/episodes-list
Please take the time to support my work.
http://www.rchacker.com/support-rchacker
Thanks
Log In to reply
With your range testing can you re orientate your tx antenna so that it resembles an inverted V, with the orientation that you have it in now will have a low angle of radiation (not good for things above you) your intended use (flight) you want a higher angle of radiation because your multirotor is above you
Log In to reply
I think the inverted vee that hams use is more directional because of the ground plane, also its inverted simply because its easy to put up that way.
Log In to reply
Log In to reply
Log In to reply
Paul
Log In to reply
Log In to reply
I am doing a video on the openLRSng code soon so might cover it then. Needs cleaning up but I might send it to Kari. try this:
Just change the three variablebuzzfreq lines.
uint32_t variablebuzzfreq = 2000; //declare at top
if (RF_Mode == Received) {
uint8_t rx_buf[4];
// got telemetry packet
lastTelemetry = micros();
RF_Mode = Receive;
spiSendAddress(0x7f); // Send the package read command
for (int16_t i = 0; i < 4; i++) {
rx_buf[i] = spiReadData();
}
//Serial.println(rx_buf[0]); // print rssi value
variablebuzzfreq = 2100 + (4 * rx_buf[0]);
}
uint32_t time = micros();
if ((time - lastSent) >= modem_params[bind_data.modem_params].interval) {
lastSent = time;
if (ppmAge < 8) {
uint8_t tx_buf[11];
ppmAge++;
if (lastTelemetry) {
if ((time - lastTelemetry) > modem_params[bind_data.modem_params].interval) {
// telemetry lost
buzzerOn(variablebuzzfreq);
lastTelemetry=0;
} else {
// telemetry link re-established
buzzerOff();
}
}
Log In to reply
Log In to reply
Log In to reply
Log In to reply