Good afternoon.
I'm doing a projects which consists in do a touch sensor.
So i decided use the freescale touch sensor MPR083.
However I have many problems in use the wire library.
What happens is that the arduino crashes when it goes execute de code: Wire.endTransmisson.
The code that I do is:
#include <Wire.h>
void setup()
{ Serial.begin(9600);
Wire.begin(); // join i2c bus (address optional for master)
}
void loop()
{ Serial.println("vai escrever");
Wire.beginTransmission(0b10011010); // transmit to device #4
Wire.send(0b00001010); // sends five bytes
Wire.send(0b00010101); // sends one byte
Wire.endTransmission(); // stop transmitting
delay(500); Serial.println("escreveu");
}
Ok i understand that but isn't it what i put?
Look: Wire.beginTransmission(0b10011010) , the firsts seven bits are the adress and th last is the instruction to write. Am I correct?