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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
# I2C Communication interface
The I2C interface consists of 2 pins:
+ SCL, also known as the clock pin. PC0 on Atmega32
+ SDA, also known as the data pin. PC1 on Atmega32
With these two connections, it is possible to get data from a variety of sensors measuring
physical parameters. Visit the [sensors page](../../sensors) for details on using them via the GUI.
## I2C function calls
=== "I2CScan"
```python hl_lines="1"
def I2CScan()
scan the I2C bus, and return a list of addresses that responded
return: list of numbers between 0-127.
```
=== "I2CWriteBulk"
```python hl_lines="1"
def I2CWriteBulk(address,bytestream):
write a set of bytes to an I2C address
address: Address of I2C slave device. 0-127
bytestream: list of bytes to write
return: True if success.
```
=== "I2CReadBulk"
```python hl_lines="1"
def I2CReadBulk(address,register,total_bytes):
write a set of bytes to an I2C address
address: Address of I2C slave device. 0-127
register: The starting address in the I2C slave device from where bytes are to be read
total_bytes: Total number of bytes to read
return: bytes, timeout
"ignore contents if timeout==True"
```
=== "MPU6050 example"
```python hl_lines="1"
# read values from MPU6050 accelerometer+gyro with address 0x68. refer datasheet.
from kuttyPy import *
I2CWriteBulk(0x68,[0x1B,0<<3]) #250-> Gyro Range . 250,500,1000,2000 -> 0,1,2,3 -> shift left by 3 positions
I2CWriteBulk(0x68,[0x1C,0<<3]) #2-> Accelerometer Range. 2,4,8,16 -> 0,1,2,3 -> shift left by 3 positions
I2CWriteBulk(0x68,[0x6B, 0x00]) #poweron
bytevalues,timeout = self.I2CReadBulk(0x68, 0x3B ,14)
if not timeout:
values = [(bytevalues[x*2+1]<<8)|b[x*2] for x in range(7)] #Ax,Ay,Az,temp,Gx,Gy,Gz are 16-bit from 2 b-bit each.
print('Ax = %d, Ay = %d, Az = %d'%(values[0],values[1],values[2]))
print('Gx = %d, Gy = %d, Gz = %d'%(values[4],values[5],values[6]))
```
## Pre-Supported I2C Sensors
- MPU6050 3 Axis Accelerometer, 3 axis Angular velocity (Gyro)
- MPU9250 9-DOF sensor
- MS5611 : 24 bit pressure and temperature sensor. Can resolve 15cm height variations
- TSL2561 Luminosity measurements
- BMP280 Pressure and Temperature sensor
- MCP4725 Single channel DAC
- PCA9685 PWM controller
- MLX90614 Passive IR
### MPU6050 accelerometer + gyroscope
The MPU6050 is a Micro Electro-Mechanical Systems (MEMS) which consists of a 3-axis Accelerometer
and 3-axis Gyroscope inside it. It can measure acceleration, velocity, orientation,
and many other motion related parameters. Commonly used in drones for stability feedback,
it also has a lot of potential applications in Physics Experiments.
```python hl_lines="1"
def MPU6050_init()
initialize the MPU6050 sensor(address=0x68), and set ranges to max sensitivity.
```
```python hl_lines="1"
def MPU6050_gyro_range(range)
set the sensitivity of the gyroscope
range: 0,1,2 or 3 corresponding to +-250,+-500,+-1000,+-2000
```
```python hl_lines="1"
def MPU6050_accel_range(range)
set the sensitivity of the accelerometer
range: 0,1,2 or 3 corresponding to +-2,+-4,+-8,+-16
```
```python hl_lines="1"
def MPU6050_kalman_set(value)
Enable a moving average to reduce noise level of the sensor.
Useful to reject high frequency oscillations.
fetches 50 values, and activates a Kalman filter. To ignore an activated Kalman Filter, an optional False value can be supplied to `MPU6050_all`
value: kalman averaging coefficient. Float.
```
```python hl_lines="1"
def MPU6050_all()
fetch values from the sensor
return: list of 7 16-bit integers
```
Example with MPU6050
```python
from kuttyPy import *
MPU6050_init() #Initialize the sensor
x = MPU6050_all() #Fetch readings
if x is not None:
print('Ax = %d, Ay = %d, Az = %d'%(x[0],x[1],x[2]))
print('Gx = %d, Gy = %d, Gz = %d'%(x[4],x[5],x[6]))
```
### TSL2561 Luminosity sensor
The TSL2561 is a light sensor which has a
linear response across most of the visible spectrum. It has two photodiodes
with corrresponding ADCs, and a very wide range of operation. Ideal for optics experiments
```python hl_lines="1"
def TSL2561_init()
initialize the TSL2561 sensor(address=0x39).
```
```python hl_lines="1"
def TSL2561_gain(gain)
set the gain
gain: 0 => 1x , 1 => 16x
```
```python hl_lines="1"
def TSL2561_timing(timing)
set the integration time : 3mS , 101mS, 403mS
timing: 0 => 3mS , 1 => 101mS, 2 => 403mS
```
```python hl_lines="1"
def TSL2561_all()
fetch values from the sensor
return: list of 3 integers. Total light, IR luminous intensity
```
Example with TSL2561
```python
from kuttyPy import *
TSL2561_init() #Initialize the sensor
x = TSL2561_all() #Fetch readings
if x is not None:
print('Total Light = %d, Infrared = %d'%(x[0],x[1]))
```
### BMP280 Pressure and temperature sensor
BMP280 is an absolute barometric pressure sensor developed by Bosch Sensortec.
The sensor module is housed in an extremely compact package, and is very handy to
demonstrate physics concepts to high school students.
=== "BMP280_init"
```python hl_lines="1"
def BMP280_init()
initialize the BMP280 sensor(address=118).
```
=== "BMP280_all"
```python hl_lines="1"
def BMP280_all()
fetch values from the sensor
return: list of 2 integers. Pressure(mBar), Temperature(C)
```
=== "Example"
```python
from kuttyPy import *
BMP280_init() #Initialize the sensor
x = BMP280_all() #Fetch readings
if x is not None:
print('Pressure = %.2f, Temperature = %.2f'%(x[0],x[1]))
```
### MS5611 Pressure and temperature sensor
MS5611 is a high resolution altimeter developed by MEAS.
It has better resolution than the BMP280, and about 15cm height difference can be resolved.
=== "MS5611_init"
```python hl_lines="1"
def MS5611_init()
initialize the MS5611 sensor(address=119).
```
=== "MS5611_all"
```python hl_lines="1"
def MS5611_all()
fetch values from the sensor
return: list of 2 integers. Pressure(mBar), Temperature(C)
```
=== "Example"
```python
from kuttyPy import *
MS5611_init() #Initialize the sensor
x = MS5611_all() #Fetch readings
if x is not None:
print('Pressure = %.2f, Temperature = %.2f'%(x[0],x[1]))
```
### TCS34725 RGB color sensor
=== "TCS34725_init"
```python hl_lines="1"
def TCS34725_init()
initialize the TCS34725 sensor(address=41).
```
=== "TCS34725_all"
```python hl_lines="1"
def TCS34725_all()
fetch values from the sensor
return: list of 3 integers. [Red, Green, Blue]
```
=== "TCS34725_gain"
```python hl_lines="1"
def TCS34725_gain(gain)
set the gain of the sensor
gain: 0,1,2,3 => 1x,4x,16x,60x
```
=== "Example"
```python
from kuttyPy import *
TCS34725_init() #Initialize the sensor
x = TCS34725_all() #Fetch readings
if x is not None:
print(x)
```
### MLX90614 passive IR
The MLX90614 is an infrared thermometer for non-contact temperature measurements made by Melexis
Both the IR sensitive thermopile detector chip and the signal conditioning ASIC are
integrated in the same TO-39 can.
=== "MLX90614_init"
```python hl_lines="1"
def MLX90614_init()
initialize the sensor(address=0x5A).
```
=== "MLX90614_all"
```python hl_lines="1"
def MLX90614_all()
fetch values from the sensor
return: [Temperature] in degree celcius
```
=== "Example"
```python
from kuttyPy import *
MLX90614_init() #Initialize the sensor
x = MLX90614_all() #Fetch readings
if x is not None:
print(x[0])
```
## Output devices with I2C
### MCP4725 DAC
MCP4725 is a single-channel 12-bit Digital to Analog converter from Microchip Technology.
=== "MCP4725_init"
```python hl_lines="1"
def MCP4725_init()
initialize the MCP4725 DAC(address=0x60).
```
=== "MCP4725_set"
```python hl_lines="1"
def MCP4725_all(value)
write a 12 bit number to the DAC
value: 0 - 4095
```
=== "Example"
```python
from kuttyPy import *
MCP4725_init() #Initialize the DAC
MCP4725_set(1024) #Write
```
### PCA9685 PWM generator
PCA9685 is a 16-channel PWM generator. It can be used to adjust brightness of LEDs via high frequency output,
or for controlling servo motors in a low-frequency mode. The emphasis is currently on driving SG-90 servos
=== "PCA9685_init"
```python hl_lines="1"
def PCA9685_init()
initialize the PCA9685 (address = 64).
```
=== "PCA9685_set"
```python hl_lines="1"
def PCA9685_set(channel, angle)
channel: 1-16 . Channel number for configuring
angle: 0 - 180
```
"Example"
```python
from kuttyPy import *
PCA9685_init() #Initialize the DAC
PCA9685_set(1,90) #Servo using PWM signal from channel 1 will be set to 90 degrees
PCA9685_set(2,90) #Servo using PWM signal from channel 2 will be set to 90 degrees
```
|