Longer Range?
Moderators: grovkillen, Stuntteam, TD-er
-
- Normal user
- Posts: 37
- Joined: 20 Oct 2017, 23:47
Longer Range?
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?
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?
Re: Longer Range?
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
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
Shardan
-
- Normal user
- Posts: 37
- Joined: 20 Oct 2017, 23:47
Re: Longer Range?
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.
Re: Longer Range?
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.
Re: Longer Range?
Hi Shardan,
I have a esp-07 without "S" and I can confirm that it has 1MBytes memory as you can see bellow:
Regards,
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...
$
Re: Longer Range?
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.....
Depends on which flash chip the manufacturer implements.
I've just tested mus left over ESP-07; They all have 512 KB.....
Regards
Shardan
Shardan
Re: Longer Range?
May be I'm so lucky...
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,

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,
Re: Longer Range?
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 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.
-
- Normal user
- Posts: 37
- Joined: 20 Oct 2017, 23:47
Re: Longer Range?
Yes I was aware of the 0 ohm resistor.mrwee wrote: ↑18 Feb 2018, 19:13AFIK 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 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.
Looking forward to warmer weather so I can do some additional range testing. I'm curious to see what directional gain antennas will do?
Re: Longer Range?
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!
Re: Longer Range?
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
Re: Longer Range?
Will have to look at boxes, so far all of my D1's are naked and afraid!
Re: Longer Range?
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.
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.
Re: Longer Range?
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.
Who is online
Users browsing this forum: Bing [Bot] and 14 guests