-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
what about the other way around? #1
Comments
From some quick googling it sounds like the Pi's Wifi adapter doesn't out of the box support monitor mode, but there is a patch to add it according to this. So with that and doing a Wifi scan from the ESP32 / ESP8266 it would send a probe request which the Pi should be able catch. Give it a try? Or I might when I find a moment. |
I started having a go at this and have a Pi Zero W catching the Wifi probe requests by following that guide mentioned. It went as described but didn't seem to create the mon0 interface or install tcpdump so had to add those, so the entire sequence of commands on the Pi was:
|
Can you please provide sketch for esp device that work as a sonoff switch as in example sketch & also work as a BME280 environment data sender all on same esp device.I assume 2 way data transfer is not suitable for low power application as esp device needs to stay on all the time to execute switch command.Am I right? this will be no problem for sonoff as it has to be wired to mains to work as actuator but what if we are using battery powered device to send some sensor data to raspberry using monitor mode? Does it still work like ESP-Now protocol and save precious battery power using deep sleep? If so did you measure current consumption or battery life on your BME-280 and barebone esp like you showed in your ESP-Now repository? Thanks for your out of box idea. |
I setup my Raspberry PI using above procedure and monitor mode is working but I am confused about how to set up remote esp device with BME280 using esp-now so it can send Temp,Humdity and Pressure data to raspberry pi every 10 minutes. Please help me. Thanks Thanks |
Is this code somehow usable on esp32 device with adhoc network to make it low battery powered sensor device? https://github.com/Jeija/esp32-80211-tx or https://github.com/RicardoOliveira/FriendDetector I am not a programmer so please help. Thanks |
I want to thank you for creating this repo which gave me inspiration to create low power sensor network using adhoc network. I have working solution where 2 esp8266 devices communicating with each other exchanging 6 bytes of data both ways within 220 milliseconds.It is working reliably over few days I have been testing it. Thanks again. |
@happytm thank you so much for letting me know and well done for making something useful. |
I tried this hack (I'm using raspberry headless) and when I change the MAC address, I get instantly disconnected from the wireless network, thus the second line (the iwlist command) won't run. Is there a fix for this? |
If you are interested in communication between multiple ESP8266 devices run on batteries and 1 gateway using mains power with built in MQTT broker I have simple example at: https://github.com/happytm/BatteryNode ProbeSender.ino file is used on battery powered devices and ProbeReceiver.ino file is used for mains power gateway (always on). I can not thank Anthony @torntrousers enough for inspiration. Thanks. |
This is a cool hack!
But what if I want to receive messages from an esp(32) sent to a rasberry?
The text was updated successfully, but these errors were encountered: