// Copyright (C)2018-2023, Philip Munts dba Munts Technologies. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. namespace IO.Objects.Servo.PWM { /// /// Encapsulates servo outputs using PWM outputs. /// public class Output : IO.Interfaces.Servo.Output { private readonly IO.Interfaces.PWM.Output pwm; private readonly int period; /// /// Constructor for a single servo output. /// /// PWM output instance. /// PWM pulse frequency. /// Initial servo position. public Output(IO.Interfaces.PWM.Output pwm, int freq = 50, double position = IO.Interfaces.Servo.Positions.Neutral) { if ((position < IO.Interfaces.Servo.Positions.Minimum) || (position > IO.Interfaces.Servo.Positions.Maximum)) throw new System.Exception("Invalid servo position"); this.pwm = pwm; this.period = 1000000000 / freq; this.position = position; } /// /// Write-only property for setting the servo position. /// Allowed values are -1.0 to +1.0. /// public double position { set { if ((value < IO.Interfaces.Servo.Positions.Minimum) || (value > IO.Interfaces.Servo.Positions.Maximum)) throw new System.Exception("Invalid servo position"); int ontime = 1500000 + (int)(500000.0 * value); this.pwm.dutycycle = ((double)ontime) / ((double)this.period) * 100.0; } } } }