first observation
should beCode:i2cwrite sda, scl, control, address, "A", "n", "d", "y"
but i've never tried to use that way of writing ASCII character. I feel you must place them in an array before and then shoot the arrayCode:i2cwrite sda, scl, control, address, ["A", "n", "d", "y"]
something like
Use Bracket for I2Cread too... it's in the manualCode:MyArray var byte[4] MyArray[0]="A" MyArray[1]="n" MyArray[2]="d" MyArray[3]="y" i2cwrite sda, scl, control, address, [str MyArray\4]![]()




Bookmarks