Longer Range?

Moderators: grovkillen, Stuntteam, TD-er

Post Reply
Message
Author
prairietech
Normal user
Posts: 31
Joined: 20 Oct 2017, 23:47

Longer Range?

#1 Post by prairietech » 17 Feb 2018, 19:03

I've been blown away with the ease and simplicity of using esp easy and various esp8266 modules for temperature monitoring and publishing the data using mqtt.
But I have an application that needs better distance and penetration of around 100 meters. I've read about LoRa but it seems to mostly interface to an outside network that I don't want to do.
Any other ideas or solutions?

Shardan
Normal user
Posts: 1156
Joined: 03 Sep 2016, 23:27
Location: Bielefeld / Germany

Re: Longer Range?

#2 Post by Shardan » 17 Feb 2018, 19:28

WiFi is limited in range due to legal policies limiting the transmit power.

With the onboard antennas it will be difficult to extend the range to 100 meters.
The only way out might be WiFi repeaters - if they are possible at all.

Another way are ESP-07S. Please don't mix up with ESP-07 (without the "S"). These have 0,5MByte flash and won't work with ESPEasy.
The ESP-07S has no own antenna but an IPEX connector instead. You may use these ESP-Chips with an IPEX-->SMA cable. The SMA-connector allows to connect an
antenna with higher gain.

At this point it will need some experimenting is necessary.
A bar antenna with a gain > 5dB might be enough - or not. If it does not suffice you might use a Yagi antenna (similar to the former TV antennas).
A yagi is a directional antenna with high gain, it must be directed to the antenna of your WiFi AP/router.

Yagi's are somewhat expensive. First try should be a high gain bar antenna on both sides.

Regards
Shardan
Regards
Shardan

prairietech
Normal user
Posts: 31
Joined: 20 Oct 2017, 23:47

Re: Longer Range?

#3 Post by prairietech » 17 Feb 2018, 19:36

Thanks Shardan. I just received a couple of Wemos d1 minis with external antenna connectors and have a 12db gain patch antenna to try. I think clear line of sight will be fine but 2.4 GHz isn't going to give much penetration of walls. I've looked around at 900 MHz but it appears I'm on my own to develop the code to handle the data.

Drum
Normal user
Posts: 300
Joined: 07 Feb 2016, 11:56

Re: Longer Range?

#4 Post by Drum » 17 Feb 2018, 19:45

I have used them at over 100 meters with an external AP for a while then a AP in a window after the outdoor unit died.

ut1545
Normal user
Posts: 32
Joined: 22 Mar 2016, 20:56

Re: Longer Range?

#5 Post by ut1545 » 18 Feb 2018, 17:46

Hi Shardan,

I have a esp-07 without "S" and I can confirm that it has 1MBytes memory as you can see bellow:

Code: Select all

$ esptool.py --port /dev/ttyUSB0 flash_id
esptool.py v2.1
Connecting....
Detecting chip type... ESP8266
Chip is ESP8266
Uploading stub...
Running stub...
Stub running...
Manufacturer: e0
Device: 4014
Detected flash size: 1MB
Hard resetting...
$
Regards,

Shardan
Normal user
Posts: 1156
Joined: 03 Sep 2016, 23:27
Location: Bielefeld / Germany

Re: Longer Range?

#6 Post by Shardan » 18 Feb 2018, 18:18

As these parts arenot made by Espressif there are different versions around.
Depends on which flash chip the manufacturer implements.
I've just tested mus left over ESP-07; They all have 512 KB.....
Regards
Shardan

ut1545
Normal user
Posts: 32
Joined: 22 Mar 2016, 20:56

Re: Longer Range?

#7 Post by ut1545 » 18 Feb 2018, 18:32

May be I'm so lucky... :D

I have had only one in my hands so, it may be an exception. It is marked as AI-Thinker but I know that there are a lot of fake chips around...

BTW, I'm using it just to extend range and works great...

Regards,

mrwee
Normal user
Posts: 225
Joined: 31 Aug 2016, 12:52

Re: Longer Range?

#8 Post by mrwee » 18 Feb 2018, 19:13

prairietech wrote: 17 Feb 2018, 19:36 Thanks Shardan. I just received a couple of Wemos d1 minis with external antenna connectors and have a 12db gain patch antenna to try. I think clear line of sight will be fine but 2.4 GHz isn't going to give much penetration of walls. I've looked around at 900 MHz but it appears I'm on my own to develop the code to handle the data.
AFIK you need to move a 0Ohm resistor for the external connector to work. If you don't, you're still using the internal ceramic antenna.

prairietech
Normal user
Posts: 31
Joined: 20 Oct 2017, 23:47

Re: Longer Range?

#9 Post by prairietech » 18 Feb 2018, 21:55

mrwee wrote: 18 Feb 2018, 19:13
prairietech wrote: 17 Feb 2018, 19:36 Thanks Shardan. I just received a couple of Wemos d1 minis with external antenna connectors and have a 12db gain patch antenna to try. I think clear line of sight will be fine but 2.4 GHz isn't going to give much penetration of walls. I've looked around at 900 MHz but it appears I'm on my own to develop the code to handle the data.
AFIK you need to move a 0Ohm resistor for the external connector to work. If you don't, you're still using the internal ceramic antenna.
Yes I was aware of the 0 ohm resistor.
Looking forward to warmer weather so I can do some additional range testing. I'm curious to see what directional gain antennas will do?

mattlward
Normal user
Posts: 70
Joined: 24 Jan 2018, 15:20

Re: Longer Range?

#10 Post by mattlward » 23 Feb 2018, 05:29

I was going to suggest the D1 Mini Pro, but I have not used one yet. So far, I have not needed the external antenna. I have something I want to try this spring and may have to order one to try!

User avatar
toffel969
Normal user
Posts: 469
Joined: 03 Jan 2017, 10:58
Location: Germany

Re: Longer Range?

#11 Post by toffel969 » 23 Feb 2018, 14:03

mattlward wrote: 23 Feb 2018, 05:29 I was going to suggest the D1 Mini Pro, but I have not used one yet. So far, I have not needed the external antenna. I have something I want to try this spring and may have to order one to try!
I'm using two mini pro with external antenna. I swapped them in After wifi reliability issues with normal minis. Works well
Domoticz on Raspi 2 -- 14 ESP units (hacked Sonoff,NodeMCUs, Wemos, self-built units) running with RC140- Mega 2.0.0 dev8

mattlward
Normal user
Posts: 70
Joined: 24 Jan 2018, 15:20

Re: Longer Range?

#12 Post by mattlward » 23 Feb 2018, 16:41

Will have to look at boxes, so far all of my D1's are naked and afraid!

Ton_vN
Normal user
Posts: 303
Joined: 21 Oct 2016, 15:20
Location: Hengelo (Ov)/ NL
Contact:

Re: Longer Range?

#13 Post by Ton_vN » 07 Mar 2018, 10:53

Based on experience with 2*WEMOS almost side-by-side (=1*Mini +1*Pro):
WEMOS D1 Pro + antenna provides gain as expected compared to 'naked/antenna-less' WEMOS.
The extra dBs from the antenna are clearly visible in ESPEasy's Wifi RSSI.

mattlward
Normal user
Posts: 70
Joined: 24 Jan 2018, 15:20

Re: Longer Range?

#14 Post by mattlward » 07 Mar 2018, 14:17

Thanks for that update... I have one unit that is running down in the -77 and 1 that is running down around -82. May have to try one on the next order.

Post Reply

Who is online

Users browsing this forum: No registered users and 16 guests