Crop Sprayer

Copter includes support for a crop sprayer. This feature allows an autopilot connected to a PWM operated pump and (optionally) spinner to control the rate of flow of liquid fertilizer based on the vehicle speed.

Slightly out-of-date video showing a copter using the Sprayer feature (jump to 2:25 to see the sprayer in action).

Note

Many boards with only 1MB of flash do not have this feature. See Firmware Limitations for a list of boards without this capability.

See also Zig-Zag Mode

Required Hardware

../_images/sprayer_EnRoute_AC940D.jpg

A multicopter such as the EnRoute AC 940-D with a PWM controlled pump and optionally a PWM controlled spinning mechanism (EnRoute vehicle does not require this secondary spinner control).

The pump controls the rate of flow of the fertilizer.

The optional spinner should be attached to the end of the spraying nozzles and distributes the fertilizer to a wider area.

Enabling the Sprayer

  • Connect your autopilot to the ground station (i.e. Mission Planner)

  • Set the SPRAY_ENABLE parameter to 1 and refresh parameters (the sprayer is not a commonly used feature so its other parameters are initially hidden)

  • Connect the pump to one of the autopilot’s PWM outputs (like Pixhawk AUX1) and set the appropriate SERVO*_FUNCTION or RC*_FUNCTION to 22 (where “*” is the RC output number, i.e. if the pump is connected to a Pixhawk’s AUX1, set SERVO9_FUNCTION to 22).

  • Connect the optional spinner to another output port and set SERVO*_FUNCTION or RC*_FUNCTION to 23 (i.e. if using a Pixhawk’s AUX2, set SERVO10_FUNCTION to 23)

  • To allow the pilot to turn on/off the sprayer set an auxiliary switch on an rc channel(RCx_OPTION) to “15”

Configuring the pump

  • PWM range used to control the pump and spinner can be configured by setting the SERVO*_MIN/RC*_MIN, SERVO*_MAX/RC*_MAX parameters corresponding to the pwm output channels the pump and spinner are connected to.

  • SPRAY_PUMP_MIN controls the minimum pump rate (expressed as a percentage). By default this is 0% meaning the pump will completely stop if the vehicle stops.

  • SPRAY_PUMP_RATE controls the pump rate (expressed as a percentage) when the vehicle is travelling at 1m/s. By default this is 10%. The pump rate increases linearly with the vehicle speed meaning by default the pump will reach 100% at 10m/s.

  • SPRAY_SPINNER sets the pwm value sent to the spinner when the pump is on.

  • SPRAY_SPEED_MIN sets the minimum vehicle speed (in cm/s) at which the pump will operate. Default is 100 meaning the pump will begin when the vehicle is travelling at or above 1m/s.