Source code for wpilib.ultrasonic

#----------------------------------------------------------------------------
# Copyright (c) FIRST 2008-2012. All Rights Reserved.
# Open Source Software - may be modified and shared by FRC teams. The code
# must be accompanied by the FIRST BSD license file in the root directory of
# the project.
#----------------------------------------------------------------------------

import hal
import threading
import weakref

from .counter import Counter
from .livewindow import LiveWindow
from .sensorbase import SensorBase
from .timer import Timer

__all__ = ["Ultrasonic"]

[docs]class Ultrasonic(SensorBase): """Ultrasonic rangefinder control The Ultrasonic rangefinder measures absolute distance based on the round-trip time of a ping generated by the controller. These sensors use two transducers, a speaker and a microphone both tuned to the ultrasonic range. A common ultrasonic sensor, the Daventech SRF04 requires a short pulse to be generated on a digital channel. This causes the chirp to be emmitted. A second line becomes high as the ping is transmitted and goes low when the echo is received. The time that the line is high determines the round trip distance (time of flight). .. not_implemented: initialize """
[docs] class Unit: """The units to return when PIDGet is called""" kInches = 0 kMillimeters = 1 #: Time (sec) for the ping trigger pulse.
kPingTime = 10 * 1e-6 #: Priority that the ultrasonic round robin task runs. kPriority = 90 #: Max time (ms) between readings. kMaxUltrasonicTime = 0.1 kSpeedOfSoundInchesPerSec = 1130.0 * 12.0 _static_mutex = threading.RLock() #: ultrasonic sensor list sensors = weakref.WeakSet() #: Automatic round robin mode automaticEnabled = False instances = 0 _thread = None @staticmethod
[docs] def isAutomaticMode(): with Ultrasonic._static_mutex: return Ultrasonic.automaticEnabled
@staticmethod
[docs] def ultrasonicChecker(): """Background task that goes through the list of ultrasonic sensors and pings each one in turn. The counter is configured to read the timing of the returned echo pulse. .. warning:: DANGER WILL ROBINSON, DANGER WILL ROBINSON: This code runs as a task and assumes that none of the ultrasonic sensors will change while it's running. If one does, then this will certainly break. Make sure to disable automatic mode before changing anything with the sensors!! """ while Ultrasonic.isAutomaticMode(): count = 0 for u in Ultrasonic.sensors: if not Ultrasonic.isAutomaticMode(): return if u is None: continue count += 1 if u.isEnabled(): # do the ping u.pingChannel.pulse(u.pingChannel.channel, Ultrasonic.kPingTime) Timer.delay(.1) # wait for ping to return if not count: return
def __init__(self, pingChannel, echoChannel, units=Unit.kInches): """Create an instance of the Ultrasonic Sensor. This is designed to supchannel the Daventech SRF04 and Vex ultrasonic sensors. :param pingChannel: The digital output channel that sends the pulse to initiate the sensor sending the ping. :param echoChannel: The digital input channel that receives the echo. The length of time that the echo is high represents the round trip time of the ping, and the distance. :param units: The units returned in either kInches or kMillimeters """ # Convert to DigitalInput and DigitalOutput if necessary if not hasattr(pingChannel, 'channel'): from .digitaloutput import DigitalOutput pingChannel = DigitalOutput(pingChannel) if not hasattr(echoChannel, 'channel'): from .digitalinput import DigitalInput echoChannel = DigitalInput(echoChannel) self.pingChannel = pingChannel self.echoChannel = echoChannel self.units = units self.enabled = True # make it available for round robin scheduling if Ultrasonic._thread is None or not Ultrasonic._thread.is_alive(): Ultrasonic._thread = threading.Thread( target=Ultrasonic.ultrasonicChecker, name="ultrasonicChecker") Ultrasonic.daemon = True # set up counter for this sensor self.counter = Counter(self.echoChannel) self.counter.setMaxPeriod(1.0) self.counter.setSemiPeriodMode(True) self.counter.reset() Ultrasonic.sensors.add(self) Ultrasonic.instances += 1 hal.HALReport(hal.HALUsageReporting.kResourceType_Ultrasonic, Ultrasonic.instances) LiveWindow.addSensor("Ultrasonic", self.echoChannel.getChannel(), self)
[docs] def setAutomaticMode(self, enabling): """Turn Automatic mode on/off. When in Automatic mode, all sensors will fire in round robin, waiting a set time between each sensor. :param enabling: Set to true if round robin scheduling should start for all the ultrasonic sensors. This scheduling method assures that the sensors are non-interfering because no two sensors fire at the same time. If another scheduling algorithm is preffered, it can be implemented by pinging the sensors manually and waiting for the results to come back. :type enabling: bool """ if enabling and Ultrasonic.isAutomaticMode(): return # ignore the case of no change with Ultrasonic._static_mutex: Ultrasonic.automaticEnabled = enabling if enabling: # enabling automatic mode. # Clear all the counters so no data is valid for u in Ultrasonic.sensors: if u is not None: u.counter.reset() # Start round robin task Ultrasonic._thread.start() else: # disabling automatic mode. Wait for background task to stop # running. while Ultrasonic._thread.is_alive(): # wait just a little longer than the ping time for # round-robin to stop Timer.delay(.15) # clear all the counters (data now invalid) since automatic mode # is stopped for u in Ultrasonic.sensors: if u is not None: u.counter.reset()
[docs] def ping(self): """Single ping to ultrasonic sensor. Send out a single ping to the ultrasonic sensor. This only works if automatic (round robin) mode is disabled. A single ping is sent out, and the counter should count the semi-period when it comes in. The counter is reset to make the current value invalid. """ # turn off automatic round robin if pinging single sensor self.setAutomaticMode(False) # reset the counter to zero (invalid data now) self.counter.reset() # do the ping to start getting a single range self.pingChannel.pulse(self.pingChannel.channel, Ultrasonic.kPingTime)
[docs] def isRangeValid(self): """Check if there is a valid range measurement. The ranges are accumulated in a counter that will increment on each edge of the echo (return) signal. If the count is not at least 2, then the range has not yet been measured, and is invalid. :returns: True if the range is valid :rtype: bool """ return self.counter.get() > 1
[docs] def getRangeInches(self): """Get the range in inches from the ultrasonic sensor. :returns: Range in inches of the target returned from the ultrasonic sensor. If there is no valid value yet, i.e. at least one measurement hasn't completed, then return 0. :rtype: float """ if self.isRangeValid(): return self.counter.getPeriod() * \ Ultrasonic.kSpeedOfSoundInchesPerSec / 2.0 else: return 0
[docs] def getRangeMM(self): """Get the range in millimeters from the ultrasonic sensor. :returns: Range in millimeters of the target returned by the ultrasonic sensor. If there is no valid value yet, i.e. at least one measurement hasn't complted, then return 0. :rtype: float """ return self.getRangeInches() * 25.4
[docs] def pidGet(self): """Get the range in the current DistanceUnit (PIDSource interface). :returns: The range in DistanceUnit :rtype: float """ if self.units == Ultrasonic.Unit.kInches: return self.getRangeInches() elif self.units == Ultrasonic.Unit.kMillimeters: return self.getRangeMM() else: return 0.0
[docs] def setDistanceUnits(self, units): """Set the current DistanceUnit that should be used for the PIDSource interface. :param units: The DistanceUnit that should be used. """ if units not in [self.Unit.kInches, self.Unit.kMillimeters]: raise ValueError("Invalid units argument '%s'" % units) self.units = units
[docs] def getDistanceUnits(self): """Get the current DistanceUnit that is used for the PIDSource interface. :returns: The type of DistanceUnit that is being used. """ return self.units
[docs] def isEnabled(self): """Is the ultrasonic enabled. :returns: True if the ultrasonic is enabled """ return self.enabled
[docs] def setEnabled(self, enable): """Set if the ultrasonic is enabled. :param enable: set to True to enable the ultrasonic :type enable: bool """ self.enabled = bool(enable) # Live Window code, only does anything if live window is activated.
def getSmartDashboardType(self): return "Ultrasonic" def updateTable(self): table = self.getTable() if table is not None: table.putNumber("Value", self.getRangeInches()) def startLiveWindowMode(self): pass def stopLiveWindowMode(self): pass