Coverage for janitoo_raspberry_i2c_pca9685.bus_pca9685 : 78%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# -*- coding: utf-8 -*-
Installation :
.. code-block:: bash
sudo apt-get install python-pycamera
"""
This file is part of Janitoo.
Janitoo is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Janitoo is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Janitoo. If not, see <http://www.gnu.org/licenses/>.
"""
# Set default logging handler to avoid "No handler found" warnings.
from Adafruit_MotorHAT.Adafruit_PWM_Servo_Driver import PWM
""" Fake class to allow buil on Continuous Integration tools. """
""" Fake class to allow buil on Continuous Integration tools. """
############################################################## #Check that we are in sync with the official command classes #Must be implemented for non-regression
##############################################################
node_uuid=self.uuid, help='The I2C address of the pca9685 board', label='Addr', default=0x40, ) node_uuid=self.uuid, help='The frequency for pwm', label='Freq.', default=1600, units="Hz", )
"""Start the bus""" finally:
"""Stop the bus""" self.i2c_acquire() try: self._pca9685_manager.software_reset() except: logger.exception('[%s] - Exception when stopping pca9685 board', self.__class__.__name__) finally: self.i2c_release()
"""To share bus with the adafruit library. Maybe we must control the pin use (ie to not activate a led on the """
"""Init """ self._pwm.setPWMFreq(self._frequency)
def motors(self): """ """ if self._motors is None: self._motors = [ Adafruit_DCMotor(self, m) for m in range(4) ] return self._motors
def steppers(self): """ """ if self._steppers is None: self._steppers = [ Adafruit_StepperMotor(self, 1), Adafruit_StepperMotor(self, 2) ] return self._steppers
""" """ self._pwm.softwareReset()
""" """ if (pin < 0) or (pin > 15): raise NameError('PWM pin must be between 0 and 15 inclusive') if (value_on < 0) and (value_on > 4096): raise NameError('Pin value must be between 0 and 4096!') value_off = 4096 - value_on self._pwm.setPWM(pin, value_on, value_off) |