Replies: 3 comments 3 replies
-
That's pretty interesting! I've got an idea for how to make the sender seek out the nearest gateway and pair with it, but I haven't implemented it yet. Here is the basic node-red setup: |
Beta Was this translation helpful? Give feedback.
-
As i was running off battery only for the sender, I just wanted it to wake-up and send, then sleep. Sometimes the main receiver would get both signals from the sender, but it didnt care as it was the same data anyway. My sender is in my pocket and i was moving around. I just sent data every thirty seconds. If i am passed out, someone would know is was eith on the floor or..sleeping(In reality i would stand it up.)this was a dead man function. The reason for the repeater was because, in the dead areas, a liss of message from the sender for 60 seconds would trigger a loss of signal alarm. To avoid the loss if signals, i made the repeater. Basically all it does is get what is recieves and re-send, only with an extra byte to say that this signale came via a repeater. The repeater has the same ....(forgot the word..ID? ) as the main device. I thought there would be an issue with it sending to itself, however, it doesnt. My sender also waits for the ACK message from what it is sending to. This is all very fast and more reliable than blueTooth. My application, by the way, is for an injury alert as we work by our selves alot and there are lots of snakes here. |
Beta Was this translation helpful? Give feedback.
-
The base station is a series of addressable LEDs, which show the status of
each devices and an alarm sound maker in software. I got side tracked with
trying Bluetooth devices for low power, but the system was reduced range
and not as good as wifi in esp8266. EspNOW was fast and still very good
batter. 1 18650 battery gives a month at 15 second deep sleep wake-ups. For
manual alarm, pin 16 in the 8266 is pulled low, triggering the deep sleep
wake up. The button pulls pin 16 low via a signal diode as it also pulls
another pin low at the same time. On wakeup, the other pin is checked for a
low in that pin. The diode is used so the internal watchdog low from pin 16
is not going to affect anything. I am writing this in my phone, so it is
not the best description as I don't have access to my PC. To much emphasis
in projects is on power. Deep sleep on ESPs is only 20 micro amps. I
develop in the D1Mini. For those field, I use just the 8266 bare bones,
otherwise I will be powering the USB and other interfaces.
The biggest issue was the case. I fit everything in a small section of gas
pipe(20mm) with two end caps. I am making a PCB soon with everything
mounted on one section so it slides inside the tube and it waterproof.
Showing location would be based the repeater location. I am a paramedic by
trade, so I know the value of early intervention in medical out in the
field. People generally don't get time to use radio or cell phones.
…On Thu, 26 May 2022, 5:14 am Timm Bogner, ***@***.***> wrote:
Yo, that is a fantastic application for a system like this! Node-RED would
actually be a good platform for the base station as well. There are
actually two ways for FDRS to talk to Node-RED: serial and MQTT. Serial
would allow you to communicate directly to the last gateway via USB
(instead of WiFi and MQTT). I only mention it because it sounds like a very
critical system, and this might make it more reliable.
What is your base-station setup like?
—
Reply to this email directly, view it on GitHub
<#9 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AJ7LPAYNB6V5Y5PQBLTQOJTVLZ3XHANCNFSM5WVAZ5ZA>
.
You are receiving this because you authored the thread.Message ID:
<timmbogner/Farm-Data-Relay-System/repo-discussions/9/comments/2822596@
github.com>
|
Beta Was this translation helpful? Give feedback.
-
I have been enjoying the progress (out of interest) of this project.
I had a portable ESP now based project where the sender was portable and battery powered. I had a few dead areas, so i made some repeaters which just re-transmitted the data and added a Code to say it was sent via a repeater node.
Ie Sender transmits to unit01 gateway. The repeater also has the gateway code of 01 and resends to gateway01. As they cant send and receive at the same time, I never had any issues.
I have not played around much with node red. Does anyone have an export of one,
Cheers
Beta Was this translation helpful? Give feedback.
All reactions