#! /usr/bin/python
import smbus
bus = smbus.SMBus(0)
 
address = 0x03
dataToSend = 42
 
bus.write_byte_data(address, 0xC9, dataToSend)

