Coverage for janitoo_raspberry_i2c_pca9685.pca9685 : 60%

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 -*-
Server files using the http protocol
"""
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/>.
"""
""" 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
##############################################################
""" A DC motor component for gpio """
""" """ product_name=product_name, product_type=product_type, **kwargs) node_uuid=self.uuid, help='The speed of the motor. A byte from 0 to 255', label='Speed', default=0, set_data_cb=self.set_speed, ) node_uuid=self.uuid, help="The max speed supported by the motor. Some motor doesn't seems support 100% PWM. A byte from 0 to 255", label='Speed', default=255, ) node_uuid=self.uuid, help='The number of the motor on the Hat board. A byte from 1 to 4', label='Num.', ) node_uuid=self.uuid, help='The action on the DC motor', label='Actions', list_items=['forward', 'backward', 'release'], default='release', set_data_cb=self.set_action, is_writeonly = True, cmd_class=COMMAND_MOTOR, genre=0x01, ) node_uuid=self.uuid, help='The current speed of the motor. An integer from -255 to 255', label='CSpeed', get_data_cb=self.get_current_speed, )
"""Get the current speed """ else:
"""Set the speed ot the motor """ self.values['speed'].set_data_index(index=index, data=data) try: m = self.values['num'].get_data_index(index=index) if m is not None: self._bus.i2c_acquire() try: self._bus._pca9685_manager.getMotor(m).setSpeed(data) finally: self._bus.i2c_release() except: logger.exception('[%s] - Exception when setting speed')
"""Act on the motor """ params = {} if data == "forward": try: m = self.values['num'].get_data_index(index=index) if m is not None: self._bus.i2c_acquire() try: self._bus._pca9685_manager.getMotor(m).run(Adafruit_MotorHAT.FORWARD) finally: self._bus.i2c_release() except: logger.exception('[%s] - Exception when running forward') elif data == "backward": try: m = self.values['num'].get_data_index(index=index) if m is not None: self._bus.i2c_acquire() try: self._bus._pca9685_manager.getMotor(m).run(Adafruit_MotorHAT.BACKWARD) finally: self._bus.i2c_release() except: logger.exception('[%s] - Exception when running backward') elif data == "release": m = self.values['num'].get_data_index(index=index) if m is not None: try: self._bus.i2c_acquire() try: self._bus._pca9685_manager.getMotor(m).run(Adafruit_MotorHAT.RELEASE) finally: self._bus.i2c_release() except: logger.exception('[%s] - Exception when releasing one motor %s', m)
""" A stepper motor component"""
""" """ product_name=product_name, product_type=product_type, product_manufacturer=product_manufacturer, **kwargs)
""" A led driver component"""
""" """ product_name=product_name, product_type=product_type, product_manufacturer=product_manufacturer, **kwargs) node_uuid=self.uuid, help='The level of the LED. A byte from 0 to 100', label='Level', default=0, set_data_cb=self.set_level, ) node_uuid=self.uuid, help="The max level supported by the LED. Some LED doesn't seems support 100% PWM. A byte from 0 to 100", label='Max level', default=100, ) node_uuid=self.uuid, help='The number of the LED on the Hat board. A byte from 1 to 16', label='Num.', ) node_uuid=self.uuid, set_data_cb=self.set_switch, )
"""Set the level ot the LED """ p = self.values['num'].get_data_index(index=index) self._bus.i2c_acquire() try: self._bus._pca9685_manager.setPWM(p, int(data*4096/100)) self.values['level'].set_data_index(index=index, data=data) except: logger.warning("[%s] - set_level invalid data : %s", self.__class__.__name__, data) finally: self._bus.i2c_release()
"""Switch On/Off the led """ if data == "on": try: p = self.values['num'].get_data_index(index=index) self._bus._pca9685_manager.setPWM(p, 4096) self.values['level'].set_data_index(index=index, data=100) except: logger.exception('[%s] - Exception when switching on', self.__class__.__name__) finally: self._bus.i2c_release() elif data == "off": self._bus.i2c_acquire() try: p = self.values['num'].get_data_index(index=index) self._bus._pca9685_manager.setPWM(p, 0) self.values['level'].set_data_index(index=index, data=0) except: logger.exception('[%s] - Exception when switching off', self.__class__.__name__) finally: self._bus.i2c_release() else: logger.warning("[%s] - set_switch unknown data : %s", self.__class__.__name__, data) |