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

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

# -*- coding: utf-8 -*- 

"""The Raspberry bmp thread 

 

Server files using the http protocol 

 

""" 

 

__license__ = """ 

    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/>. 

 

""" 

__author__ = 'Sébastien GALLET aka bibi21000' 

__email__ = 'bibi21000@gmail.com' 

__copyright__ = "Copyright © 2013-2014-2015-2016 Sébastien GALLET aka bibi21000" 

 

import logging 

logger = logging.getLogger(__name__) 

import os, sys 

import threading 

 

from janitoo.thread import JNTBusThread, BaseThread 

from janitoo.options import get_option_autostart 

from janitoo.utils import HADD 

from janitoo.node import JNTNode 

from janitoo.value import JNTValue 

from janitoo.component import JNTComponent 

from janitoo_raspberry_i2c.bus_i2c import I2CBus 

 

try: 

    from Adafruit_MotorHAT import Adafruit_StepperMotor, Adafruit_DCMotor 

except IOError: 

 

    class Adafruit_StepperMotor(): 

        """ Fake class to allow buil on Continuous Integration tools. 

        """ 

        pass 

 

    class Adafruit_DCMotor(): 

        """ Fake class to allow buil on Continuous Integration tools. 

        """ 

        pass 

 

    logger.exception("Can't import Adafruit_MotorHAT") 

 

############################################################## 

#Check that we are in sync with the official command classes 

#Must be implemented for non-regression 

from janitoo.classes import COMMAND_DESC 

 

COMMAND_MOTOR = 0x3100 

COMMAND_SWITCH_MULTILEVEL = 0x0026 

COMMAND_SWITCH_BINARY = 0x0025 

 

assert(COMMAND_DESC[COMMAND_SWITCH_MULTILEVEL] == 'COMMAND_SWITCH_MULTILEVEL') 

assert(COMMAND_DESC[COMMAND_SWITCH_BINARY] == 'COMMAND_SWITCH_BINARY') 

assert(COMMAND_DESC[COMMAND_MOTOR] == 'COMMAND_MOTOR') 

############################################################## 

 

def make_dcmotor(**kwargs): 

    return DcMotorComponent(**kwargs) 

 

def make_pwm(**kwargs): 

    return PwmComponent(**kwargs) 

 

def make_stepmotor(**kwargs): 

    return StepMotorComponent(**kwargs) 

 

class DcMotorComponent(JNTComponent): 

    """ A DC motor component for gpio """ 

 

    def __init__(self, bus=None, addr=None, **kwargs): 

        """ 

        """ 

        oid = kwargs.pop('oid', 'rpii2c.dcmotor') 

        name = kwargs.pop('name', "Motor") 

        product_name = kwargs.pop('product_name', "Motor") 

        product_type = kwargs.pop('product_type', "DC Motor") 

        JNTComponent.__init__(self, oid=oid, bus=bus, addr=addr, name=name, 

                product_name=product_name, product_type=product_type, **kwargs) 

        logger.debug("[%s] - __init__ node uuid:%s", self.__class__.__name__, self.uuid) 

        uuid="speed" 

        self.values[uuid] = self.value_factory['config_byte'](options=self.options, uuid=uuid, 

            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, 

        ) 

        uuid="max_speed" 

        self.values[uuid] = self.value_factory['config_byte'](options=self.options, uuid=uuid, 

            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, 

        ) 

        uuid="num" 

        self.values[uuid] = self.value_factory['config_byte'](options=self.options, uuid=uuid, 

            node_uuid=self.uuid, 

            help='The number of the motor on the Hat board. A byte from 1 to 4', 

            label='Num.', 

        ) 

        uuid="actions" 

        self.values[uuid] = self.value_factory['action_list'](options=self.options, uuid=uuid, 

            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, 

        ) 

        uuid="current_speed" 

        self.values[uuid] = self.value_factory['sensor_integer'](options=self.options, uuid=uuid, 

            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, 

        ) 

        poll_value = self.values[uuid].create_poll_value(default=300) 

        self.values[poll_value.uuid] = poll_value 

 

    def get_current_speed(self, node_uuid, index): 

        """Get the current speed 

        """ 

        current_state = self.values['actions'].get_data_index(index=index) 

        if current_state == 'forward': 

            return self.values['speed'].get_data_index(index=index) 

        elif current_state == 'backward': 

            return self.values['speed'].get_data_index(index=index) * -1 

        else: 

            return 0 

 

    def set_speed(self, node_uuid, index, data): 

        """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') 

 

    def set_action(self, node_uuid, index, data): 

        """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) 

 

class StepMotorComponent(JNTComponent): 

    """ A stepper motor component""" 

 

    def __init__(self, bus=None, addr=None, **kwargs): 

        """ 

        """ 

        oid = kwargs.pop('oid', 'rpii2c.stepmotor') 

        name = kwargs.pop('name', "Motor") 

        product_name = kwargs.pop('product_name', "Motor") 

        product_type = kwargs.pop('product_type', "Step Motor") 

        product_manufacturer = kwargs.pop('product_manufacturer', "Janitoo") 

        JNTComponent.__init__(self, oid=oid, bus=bus, addr=addr, name=name, 

                product_name=product_name, product_type=product_type, product_manufacturer=product_manufacturer, **kwargs) 

        logger.debug("[%s] - __init__ node uuid:%s", self.__class__.__name__, self.uuid) 

 

class PwmComponent(JNTComponent): 

    """ A led driver component""" 

 

    def __init__(self, bus=None, addr=None, **kwargs): 

        """ 

        """ 

        oid = kwargs.pop('oid', 'rpii2c.pwm') 

        name = kwargs.pop('name', "Motor") 

        product_name = kwargs.pop('product_name', "PWM channel") 

        product_type = kwargs.pop('product_type', "PWM channel") 

        product_manufacturer = kwargs.pop('product_manufacturer', "Janitoo") 

        JNTComponent.__init__(self, oid=oid, bus=bus, addr=addr, name=name, 

                product_name=product_name, product_type=product_type, product_manufacturer=product_manufacturer, **kwargs) 

        logger.debug("[%s] - __init__ node uuid:%s", self.__class__.__name__, self.uuid) 

        uuid="level" 

        self.values[uuid] = self.value_factory['action_switch_multilevel'](options=self.options, uuid=uuid, 

            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, 

        ) 

        poll_value = self.values[uuid].create_poll_value(default=300) 

        self.values[poll_value.uuid] = poll_value 

        uuid="max_level" 

        self.values[uuid] = self.value_factory['config_byte'](options=self.options, uuid=uuid, 

            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, 

        ) 

        uuid="num" 

        self.values[uuid] = self.value_factory['config_byte'](options=self.options, uuid=uuid, 

            node_uuid=self.uuid, 

            help='The number of the LED on the Hat board. A byte from 1 to 16', 

            label='Num.', 

        ) 

        uuid="switch" 

        self.values[uuid] = self.value_factory['action_switch_binary'](options=self.options, uuid=uuid, 

            node_uuid=self.uuid, 

            set_data_cb=self.set_switch, 

        ) 

        poll_value = self.values[uuid].create_poll_value(default=300) 

        self.values[poll_value.uuid] = poll_value 

 

    def set_level(self, node_uuid, index, data): 

        """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() 

 

    def set_switch(self, node_uuid, index, data): 

        """Switch On/Off the led 

        """ 

        if data == "on": 

            self._bus.i2c_acquire() 

            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)