sheen.bot Logo

Insights

Monitoring a farm without electricity or fibre

08 Jul 2025·Sheen Robotics
Monitoring a farm without electricity or fibre

No mains and no fibre? Power sensors with the sun, carry readings over long-range LoRa radio to one LTE gateway, and design for alerts, not dashboards, so it pays for itself.

You can watch over a farm with no mains power and no fibre by keeping the design in three plain layers: small solar-powered sensor nodes out in the field, a low-power long-range radio to carry their readings, and one gateway that uses a cellular (LTE) signal for the last hop to the internet. Build it to alert you when something changes rather than stream data all day, and the whole thing runs on sunlight and a single SIM card.

First, price what a drive-out actually costs

Before buying anything, list the things you currently check by driving to them. On most farms that is a short list: is the water tank full, is the borehole pump running, did the gate get left open, is the cold room still cold, is the electric fence live, is the diesel level dropping faster than it should.

Every one of those checks costs you fuel and an hour you will not get back. The value of remote monitoring is not the gadget; it is the drives you no longer make and the failures you catch early. A pump that runs dry overnight or a trough that empties on a hot day is expensive in a way a sensor never is. Start your thinking there, not with the technology.

Power the nodes with the sun, not the grid

A sensor node is a small microcontroller, a sensor or two, a rechargeable battery and a solar panel. The trick to running for months without a wire is deep sleep. The node wakes every few minutes, takes a reading, sends a short radio packet, and goes back to sleep. Awake for a second, asleep the rest, so the power draw stays tiny.

A panel not much bigger than your hand can keep a node alive right through a Cape winter if you size the battery for several cloudy days of buffer. Mount panels facing north and tilt them for the low winter sun so a run of grey July days does not flatten the pack. Lithium iron phosphate cells cope better with cold mornings and long life than cheap lithium, which matters when the node is bolted to a pole three kilometres from the house.

Carry the signal with LoRa, not Wi-Fi

Wi-Fi and Bluetooth give up after tens of metres, which is useless across open veld. LoRa, short for long range, trades data rate for distance. It sends only a trickle of data, but that trickle travels kilometres across flat ground with a clear line of sight. That is a perfect match for a farm, where you want a short number twice a minute, not a video feed.

Lay it out as a star: many cheap nodes all whispering to one gateway. Put the gateway up high, on a windmill, a water tower or a roof ridge, because height buys range more than power does. Hills and dense bush block the signal, so if a far paddock sits behind a rise you can drop a simple repeater node on the ridge to hop the message over the terrain. The radio itself runs on unlicensed spectrum, so there is no monthly fee for the link between your nodes.

One gateway, one backhaul

Here is the part that keeps costs down: the field nodes never touch the internet. Only the gateway does. Where there is no fibre, the gateway uses a normal cellular SIM over LTE to send data home. One SIM covers the whole farm, however many nodes you add, because the nodes talk to the gateway for free over the radio.

Because you are sending alerts and short summaries instead of images, the data bill stays small enough to forget about. Give the gateway its own solar panel and battery so a grid outage does not take your eyes off the farm, and add a simple store-and-forward buffer so that when the cellular signal drops for an hour, the backlog resends the moment coverage returns.

Design for alerts, quiet by default

The most common way farm monitoring fails is a dashboard nobody opens. Flip the logic. The system should stay silent unless a threshold is crossed: tank below a set level, pump drawing no current, cold room above a safe temperature, fence voltage collapsed, node battery running low. Silence means all is well.

Send those alerts by SMS or push notification so they land on a phone even on a weak signal, and add one daily heartbeat message. If the heartbeat stops, you know the gateway itself is down rather than assuming no news is good news. Quiet by default also saves battery and data, because a node that only speaks when it matters sleeps far more of the day.

Start small and keep it identical

You do not need to instrument the whole farm on day one. Prove the idea on the one signal that costs you the most to check in person, then grow.

  1. Pick the highest-value signal first, usually a water tank level or a pump running.
  2. Build one solar node and one gateway, then prove the radio link at the real distance before you trust it.
  3. Set a single alert threshold and test it by actually triggering the condition.
  4. Add nodes one at a time, keeping every node identical so spares are interchangeable.
  5. Keep spares on the shelf, a couple of nodes and a spare panel, because things fail in the rain.

The skills behind it

None of this is exotic. A microcontroller, a sensor, a radio, a battery and a bit of logic are ordinary building blocks, and they are exactly what students put together in our coding and robotics academy. Learning deep sleep, reading a sensor and sending a radio message on a friendly board like the sheenbot∞ is a low-stakes way to understand the moving parts before you bolt one to a real pump far from the house. The winter holiday workshops cover the sensor-and-radio basics, and the store stocks the parts to practise with.

Takeaway

You do not need mains power or fibre to know what your farm is doing. Sunlight runs the sensors, long-range radio carries the readings, one cellular gateway carries them home, and honest alert design means the system earns its keep by saving drives and catching failures in the middle of the night. Begin with the single signal that costs you the most to go and check yourself, prove the link, and add from there.

How far can LoRa actually reach on a farm?

Across open ground with a clear line of sight, several kilometres is realistic. Trees, sheds and hills cut that down quickly, so mounting the gateway high and adding a repeater node on a ridge fixes most gaps.

What happens during a run of cloudy winter days?

Size each node's battery for several days of autonomy and keep the power draw low with deep sleep. The daily heartbeat and low-battery alert will warn you if a node is slowly fading before it goes dark.

Do I need a SIM card for every sensor?

No. The field nodes use the free long-range radio to reach the gateway. Only the one gateway needs a SIM to send data on to the internet, so you pay for a single connection no matter how many nodes you run.

#off-grid monitoring#farm iot#lora#solar power#remote sensing

More Insights