esp_mesh integration #311
Replies: 13 comments
-
It has been integrated ESP-MESH into ESP-IDF for ESP32, but porting to Arduino-core does not seem to be done yet. The ESP-IDF document mentions the topology of ESP-MESH, but it is due to the ESP-MESH components included in ESP-IDF and not the Arduino-core implementation. On the other hand, the ESP8266WiFiMesh::begin function of the WiFiMesh library contained in the Arduino-core of ESP8266 is an implementation that can itself be both a root node and a child node (in the case, limited to WIFI_STA as a station node). And it doesn't need WiFi.begin. (In fact, it has replaced by ESP8266WiFiMesh::begin accompany with SSID and password as a matter of course) In light of the above, I wish to ask questions about your mention.
|
Beta Was this translation helpful? Give feedback.
-
What I want is a self-organizing collection of devices. Ideally there is no designated root node, so whichever node gets configured via the autoconnect web interface becomes the root node and the other nodes connect via the hard-coded mesh ap. It is possible that the mesh network is only used to propagate the root node's wifi configuration, it is also possible that the mesh network is used for inter-node communication and that the root node is just used as a management gateway. Once I integrate mesh I'll figure out how to use it :-) |
Beta Was this translation helpful? Give feedback.
-
Can I paraphrase it as the following steps?
It's an interesting operating model and is feasible, I think. In Japan, it is called the "IMOZURU-SHIKI" (like a chain-reaction) |
Beta Was this translation helpful? Give feedback.
-
yeah that is what I have in mind, or sort of in mind! Ha ha I googled IMOZURU-SHIKI and all I get is links to hentai manga porn! |
Beta Was this translation helpful? Give feedback.
-
@HollisTech, Do you leave this topic open? |
Beta Was this translation helpful? Give feedback.
-
No you can close it. It wasn't really an issue it was a query.
Mark Roddy
…On Thu, Feb 27, 2020 at 7:49 AM Hieromon Ikasamo ***@***.***> wrote:
@HollisTech <https://github.com/HollisTech>, Do you leave this topic open?
I cannot provide any more ideas to you on this topic at this time.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#182?email_source=notifications&email_token=ABJGMFZC2C44RACILMOGHL3RE6ZHDA5CNFSM4KXEZIPKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOENEH7TI#issuecomment-591953869>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJGMFZHGHHFXTUURUCHXQ3RE6ZHDANCNFSM4KXEZIPA>
.
|
Beta Was this translation helpful? Give feedback.
-
@HollisTech Hello, it's IMOZURU. I tried to implement the self-organized mesh using AutoConnet based on your idea. But, I have not succeeded in it yet. I posted the trial code on the Gist named Hieromon/Mesh.ino. I hope it helps you. |
Beta Was this translation helpful? Give feedback.
-
Sounds very interesting, do you have any updates or news to this topic? |
Beta Was this translation helpful? Give feedback.
-
I've put it all on hold for a while. I was waiting for platform io to catch
up to the latest esp releases. I might take another look.
Mark Roddy
…On Mon, Oct 5, 2020 at 2:41 PM pmartinz ***@***.***> wrote:
Sounds very interesting, do you have any updates or news to this topic?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#182 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABJGMF35J5OMWFDLZHODTFDSJIHO3ANCNFSM4KXEZIPA>
.
|
Beta Was this translation helpful? Give feedback.
-
@pmartinz I believe it a meaningful attempt and haven't abandoned it that tries to bring AutoConnect into the esp-mesh platform. I wish to resume after release work for AutoConnect v.120 is finished. |
Beta Was this translation helpful? Give feedback.
-
@HollisTech, @Hieromon Thanks for the updates! |
Beta Was this translation helpful? Give feedback.
-
I too am interested in the ESP-mesh implementations and am willing to test things |
Beta Was this translation helpful? Give feedback.
-
Hi,
First - thank you so much for this great library. You saved me weeks of effort moving from hard-coded ssid/passwords to a more secure configuration. Well done!
I am working on small-ish collections of peer cooperating devices (using coap to communicate), and manually configuring each device via a web interface is ok for testing but not for a product. Ultimately I want to integrate esp_mesh as well, so that only one of the devices needs manual configuration and the rest just join into the soft-ap that (root) node creates.
Any thoughts on how to do this?
Beta Was this translation helpful? Give feedback.
All reactions