Long Range Transmission
-
Personal opinion: go for ATSAM
-
Personal opinion: go for ATSAM
I'm still not fully out of atmega land, and I have a few atmega1284p lying around (in both DIL and SMD versions), so I need to give them a "home".
My arduino adventure started with the intention of building a mobile robot. This dream/project is still on the radar, but my foray into sensors has helped regain knowledge I lost, and I'm still learning new stuff, so the more practical home projects now get precedence over my robot pet project.
Given the cost of a raspberry zero, the idea of a plugin board with the necessary radio's is not so far fetched either. For AC based sensors anyway.
-
@GertSanders : thx. Like you I have too much mcu in collection and wanted to give a 'home" to my 1284 too :) but I agree with you, and I already know what tbowmo will tell me :laughing: So I will give it a try. I know if I have some trouble there is an awesome community ;)
-
@Ironbar said:
I have not had much luck with the nrf24l01+ pa/lna modules. They only seem to transmit about 300m. I'm going to setup an outdoor test this summer to see if I can get them to transmit further.
Are you getting 1000m out of them?
I've never tried the shielded modules. I didn't even know they existed. I guess I will throw them in the test as well. I will still be highly surprised if I can get 800 meters out either one of them.
Thanks for the info!
I got 1000m on clear line of sight out of them, yes. Its a matter of shielding, clean power supply and correct antenna alignment.
@Lawrence-Helm said:
I have wondered about putting a solar powered repeater in the middle...
Is doable, but you will probably need to use a rather big solar cell and battery. I'm currently building some nrf24l01+ nodes with 20 watt solar cells. I think i can give some results in about 1 month.
@Oitzu said:
@Ironbar said:
I have not had much luck with the nrf24l01+ pa/lna modules. They only seem to transmit about 300m. I'm going to setup an outdoor test this summer to see if I can get them to transmit further.
Are you getting 1000m out of them?
I've never tried the shielded modules. I didn't even know they existed. I guess I will throw them in the test as well. I will still be highly surprised if I can get 800 meters out either one of them.
Thanks for the info!
I got 1000m on clear line of sight out of them, yes. Its a matter of shielding, clean power supply and correct antenna alignment.
Are you shielding the antennas on both ends to get the 1000m? I'm rebuilding my gateway now so I wonder if it would be worth waiting on a shielded antenna. The shielded antennas I bought say 1300m line of sight.
@Lawrence-Helm said:
I have wondered about putting a solar powered repeater in the middle...
Is doable, but you will probably need to use a rather big solar cell and battery. I'm currently building some nrf24l01+ nodes with 20 watt solar cells. I think i can give some results in about 1 month.
I would be very interested to see this project. My barn is about half way down my driveway at 400m so I may be able to put a repeating node in there. My problem is, I do not have clear line of sight to my mailbox because my property is hilly. I would have to put a antenna on my barn that sticks up in the air 15m and I do not want to do that.
-
@Oitzu said:
@Ironbar said:
I have not had much luck with the nrf24l01+ pa/lna modules. They only seem to transmit about 300m. I'm going to setup an outdoor test this summer to see if I can get them to transmit further.
Are you getting 1000m out of them?
I've never tried the shielded modules. I didn't even know they existed. I guess I will throw them in the test as well. I will still be highly surprised if I can get 800 meters out either one of them.
Thanks for the info!
I got 1000m on clear line of sight out of them, yes. Its a matter of shielding, clean power supply and correct antenna alignment.
Are you shielding the antennas on both ends to get the 1000m? I'm rebuilding my gateway now so I wonder if it would be worth waiting on a shielded antenna. The shielded antennas I bought say 1300m line of sight.
@Lawrence-Helm said:
I have wondered about putting a solar powered repeater in the middle...
Is doable, but you will probably need to use a rather big solar cell and battery. I'm currently building some nrf24l01+ nodes with 20 watt solar cells. I think i can give some results in about 1 month.
I would be very interested to see this project. My barn is about half way down my driveway at 400m so I may be able to put a repeating node in there. My problem is, I do not have clear line of sight to my mailbox because my property is hilly. I would have to put a antenna on my barn that sticks up in the air 15m and I do not want to do that.
@Ironbar said:
Are you shielding the antennas on both ends to get the 1000m? I'm rebuilding my gateway now so I wonder if it would be worth waiting on a shielded antenna. The shielded antennas I bought say 1300m line of sight.
No, i'm shielding the modules itself. The cheap PA/LNA modules are not correctly shielded.
Have a look here to get an idea: http://forum.mysensors.org/topic/1877/2-x-nrf24l01-pa-lna-with-rf24_pa_max/14I would be very interested to see this project. My barn is about half way down my driveway at 400m so I may be able to put a repeating node in there. My problem is, I do not have clear line of sight to my mailbox because my property is hilly. I would have to put a antenna on my barn that sticks up in the air 15m and I do not want to do that.
I will put up some pictures soon. I'm currently debugging 3 build nodes and plan to place them in 1-2 weeks.
Well yeah you probably need repeaters for that. Signals don't propagate that great through ground. ;) -
I remember sometime back someone was working (or talking about) integrating the RadioHead library into MySensor...
so we could have any radio, with Mesh, or Repeater as part of My Sensor...Is anyone still working on this??
and yes, using low cost, lower power 32 bit processors, is a good move forward....
Oh, just a note, new Moteino are now available with lora rfm95 radios
Thanks
-
hello I made some range test using the LoRa Modules RFM96 (433mhz) , I was able to get data at 5.2miles ( low speed) transmission.
still trying to understand the radioHead libray.. for my test I use the example rf95_reliable_datagram_client.pde
see more details of my test here..RFM96 LoRa
my problem is I am not so advanced when programming arduino in the way to pack data using struct , for example I want to send between nodes the status of 3 or 4 Digital inputs and and at least 2 or 3 internal calculations based on analog inputs.
Anyone could help me with that?typedef struct{ // this is the data that I would receive from master
bool RDI1; // command for turn on/off an digital ouput
bool RDI2; // command for turn on/off an digital ouput
bool RDI3; // command for turn on/off an digital ouput
bool RDI4; // command for turn on/offf an digital ouput
int RVar1; // value
int RVar2; //value
}
Recdata;
Recdata Rdata; -
@tbowmo: hi. I will see if i keep this like a proto or if i do a better one but I wanted to share what I'm checking and panelizing today for fun. i will see what I get from this..and now i'm waiting my t962 to hack it, mine yeah!, so cool my birthday sooner lol, so I'm happy that's why I share ahaha you can say it :)
Inspired from nice adafruit design, sparkfun, yours too ;) I made my version, for my proto needs.
Atsamd20/21E tqfp.
I rerouted and added : protection+filter for usb, different ldo, eeprom, atsha, mysxconnector, lora or nrf, antenna pad or connector, ws2812b. Programming pads for pogopins on bottom. everything is on top. i'm thinking to put a jumper to use for another purpose usb datalines. it is a lipo charger version so usb connector should stay I guess, at least for power??? i will certainly make small mux changes.
Size 2.4x5.5cm, 0603, 2layer
daughter boards : 2.4x4.2cm (max)
So on a 5x10 (cheap) , I will have two atsam + two daughter boards.

In the picture :
With nrf, simple but fun actuator : with a mems+gesture+rgb led
With LORA, for weather optional sensors : ctn, si7021, bme280, veml6070, opt3001, as3935. it should easily fit in atsam, and because I have them in stock so why not :)
what do you think? -
Has anyone tried to use any variants of the radios to cover a very long range ~800 meters? I ran across this:
I wonder if this could be used as a bridge between sensors to cover a longer range. Or am I reinventing the wheel here?
I have a gate that is 800m away that I would like to open/close via mysensors.