• 树莓派PICO-TCS34725颜色传感器


    TSC34725驱动

    tcs34725.py

    import time
    import ustruct
    
    #const = lambda x:x
    
    _COMMAND_BIT = const(0x80)
    
    _REGISTER_ENABLE = const(0x00)
    _REGISTER_ATIME = const(0x01)
    
    _REGISTER_AILT = const(0x04)
    _REGISTER_AIHT = const(0x06)
    
    _REGISTER_ID = const(0x12)
    
    _REGISTER_APERS = const(0x0c)
    
    _REGISTER_CONTROL = const(0x0f)
    
    _REGISTER_SENSORID = const(0x12)
    
    _REGISTER_STATUS = const(0x13)
    _REGISTER_CDATA = const(0x14)
    _REGISTER_RDATA = const(0x16)
    _REGISTER_GDATA = const(0x18)
    _REGISTER_BDATA = const(0x1a)
    
    _ENABLE_AIEN = const(0x10)
    _ENABLE_WEN = const(0x08)
    _ENABLE_AEN = const(0x02)
    _ENABLE_PON = const(0x01)
    
    _GAINS = (1, 4, 16, 60)
    _CYCLES = (0, 1, 2, 3, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60)
    
    
    class TCS34725:
        def __init__(self, i2c, address=0x29):
            self.i2c = i2c
            self.address = address
            self._active = False
            self.integration_time(2.4)
            sensor_id = self.sensor_id()
            temp = self.ByteToHex(sensor_id)
            print(temp)
            #if sensor_id not in (0x4D, 0x10):
            #    raise RuntimeError("wrong sensor id 0x{:x}".format(sensor_id))
        
        def ByteToHex(self, bins ):
            return ''.join( [ "%02X" % x for x in bins ] ).strip()
    
        def _register8(self, register, value=None):
            register |= _COMMAND_BIT
    
            if value is None:
                return self.i2c.readfrom_mem(self.address, register, 1)
            data = ustruct.pack(', value)
            self.i2c.writeto_mem(self.address, register, data)
    
        def _register16(self, register, value=None):
            register |= _COMMAND_BIT
            if value is None:
                data = self.i2c.readfrom_mem(self.address, register, 2)
                return ustruct.unpack(', data)[0]
            data = ustruct.pack(', value)
            self.i2c.writeto_mem(self.address, register, data)
    
        def active(self, value=None):
            if value is None:
                return self._active
            value = bool(value)
            if self._active == value:
                return
            self._active = value
            enable = self._register8(_REGISTER_ENABLE)
            if value:
                self._register8(_REGISTER_ENABLE, enable | _ENABLE_PON)
                time.sleep_ms(3)
                self._register8(_REGISTER_ENABLE,
                    enable | _ENABLE_PON | _ENABLE_AEN)
            else:
                self._register8(_REGISTER_ENABLE,
                    enable & ~(_ENABLE_PON | _ENABLE_AEN))
    
        def sensor_id(self):
            return self._register8(_REGISTER_SENSORID)
    
        def integration_time(self, value=None):
            if value is None:
                return self._integration_time
            value = min(614.4, max(2.4, value))
            cycles = int(value / 2.4)
            self._integration_time = cycles * 2.4
            return self._register8(_REGISTER_ATIME, 256 - cycles)
    
        def gain(self, value):
            if value is None:
                return _GAINS[self._register8(_REGISTER_CONTROL)]
            if value not in _GAINS:
                raise ValueError("gain must be 1, 4, 16 or 60")
            return self._register8(_REGISTER_CONTROL, _GAINS.index(value))
    
        def _valid(self):
            return bool(self._register8(_REGISTER_STATUS) & 0x01)
    
        def read(self, raw=False):
            was_active = self.active()
            self.active(True)
            while not self._valid():
                time.sleep_ms(int(self._integration_time + 0.9))
            data = tuple(self._register16(register) for register in (
                _REGISTER_RDATA,
                _REGISTER_GDATA,
                _REGISTER_BDATA,
                _REGISTER_CDATA,
            ))
            self.active(was_active)
            if raw:
                return data
            return self._temperature_and_lux(data)
    
        def _temperature_and_lux(self, data):
            r, g, b, c = data
            x = -0.14282 * r + 1.54924 * g + -0.95641 * b
            y = -0.32466 * r + 1.57837 * g + -0.73191 * b
            z = -0.68202 * r + 0.77073 * g +  0.56332 * b
            d = x + y + z
            n = (x / d - 0.3320) / (0.1858 - y / d)
            cct = 449.0 * n**3 + 3525.0 * n**2 + 6823.3 * n + 5520.33
            return cct, y
    
        def threshold(self, cycles=None, min_value=None, max_value=None):
            if cycles is None and min_value is None and max_value is None:
                min_value = self._register16(_REGISTER_AILT)
                max_value = self._register16(_REGISTER_AILT)
                if self._register8(_REGISTER_ENABLE) & _ENABLE_AIEN:
                    cycles = _CYCLES[self._register8(_REGISTER_APERS) & 0x0f]
                else:
                    cycles = -1
                return cycles, min_value, max_value
            if min_value is not None:
                self._register16(_REGISTER_AILT, min_value)
            if max_value is not None:
                self._register16(_REGISTER_AIHT, max_value)
            if cycles is not None:
                enable = self._register8(_REGISTER_ENABLE)
                if cycles == -1:
                    self._register8(_REGISTER_ENABLE, enable & ~(_ENABLE_AIEN))
                else:
                    self._register8(_REGISTER_ENABLE, enable | _ENABLE_AIEN)
                    if cycles not in _CYCLES:
                        raise ValueError("invalid persistence cycles")
                    self._register8(_REGISTER_APERS, _CYCLES.index(cycles))
    
        def interrupt(self, value=None):
            if value is None:
                return bool(self._register8(_REGISTER_STATUS) & _ENABLE_AIEN)
            if value:
                raise ValueError("interrupt can only be cleared")
            self.i2c.writeto(self.address, b'\xe6')
    
    
    def html_rgb(data):
        r, g, b, c = data
        red = pow((int((r/c) * 256) / 255), 2.5) * 255
        green = pow((int((g/c) * 256) / 255), 2.5) * 255
        blue = pow((int((b/c) * 256) / 255), 2.5) * 255
        return red, green, blue
    
    def html_hex(data):
        r, g, b = html_rgb(data)
        return "{0:02x}{1:02x}{2:02x}".format(int(r),
                                 int(g),
                                 int(b))
    
    • 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

    TCS34725示例Demo

    demo.py

    from machine import Pin,I2C
    import utime
    import tcs34725
    
    i2c0 = I2C(0, sda=Pin(0, Pin.PULL_UP), scl=Pin(1, Pin.PULL_UP),freq=100000)
    devlist = i2c0.scan()
    #print("I2C0 Address List:",devlist)
    #for dev in devlist:
    #    print(hex(dev))
        
    led = Pin(14, Pin.OUT)
    led.value(0)
    
    buf = bytearray(2)
    
    #i2c0.scan()
    #i2c0.readfrom(0x29, 4)
    #mid = i2c0.readfrom_mem(20, 0x12, 1)
    #print(mid)
    tcs34725 = tcs34725.TCS34725(i2c0)
    tcs34725.active(True) # True, False
    sensor_id = tcs34725.sensor_id()
    print(hex(sensor_id))
    if sensor_id == 0x44:
        print('TCS34725')
    else:
        print('TCS24727')
    
    tcs34725.interrupt(None)
    tcs34725.gain(16) #(1, 4, 16, 60)
    
    
    tcs34725.integration_time(200)
    #integration_time = tcs34725.integration_time()
    #print(integration_time)
    #tcs34725.threshold(self, cycles=None, min_value=None, max_value=None)
    
    # _CYCLES = (0, 1, 2, 3, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60)
    tcs34725.threshold(25, 0, 255)
    cycles, min_value, max_value = tcs34725.threshold(None, None, None)
    print("cycles, min_value, max_value",cycles, min_value, max_value)
    
    #print('gain:', tcs34725.gain(None))
    
    def html_rgb(data):
        r, g, b, c = data
        if (r>0 and g>0 and b>0 and c>0):
            red = pow((int((r/c) * 256) / 255), 2.5) * 255
            green = pow((int((g/c) * 256) / 255), 2.5) * 255
            blue = pow((int((b/c) * 256) / 255), 2.5) * 255
            return red, green, blue
        else:
            return 0,0,0
    
    def html_hex(data):
        r, g, b = html_rgb(data)
        return "{0:02x}{1:02x}{2:02x}".format(int(r),
                                 int(g),
                                 int(b))
    
    
    while True:
        led.value(1)
        utime.sleep_ms(200)
        #data = tcs34725.read(False)# True:raw, False:temperature,_lux
        data = tcs34725.read(True)# True:raw, False:temperature,_lux
        #print(data)
        led.value(1)
        print(html_rgb(data))
        #print(html_hex(data))      
    
    • 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
  • 相关阅读:
    NFT 推荐|史蒂夫·青木 NFT 作品集
    海康工业相机如何提高相机帧率
    李沐动手学深度学习V2-RNN原理
    【axios】get/post请求params/data传参总结
    八股系列——Java基础
    在线编码、格式转换
    HOSMEL:一种面向中文的可热插拔模块化实体链接工具包
    Git 使用技巧
    【论文笔记】—低照度图像增强—Supervised—GLADNet—2018-FG
    LaTeX中的数学符号
  • 原文地址:https://blog.csdn.net/u013420428/article/details/133783589