Hi!
I am trying to control my DLP LightCrafter Display 4710 throught in I2C via the J_DEV pins.
The board I am using to send I2C commands is an Arduino UNO.
Here is my Arduino code:
#include <Wire.h> void setup() { Serial.begin(9600); Wire.begin(); Wire.beginTransmission(0x36); Wire.write(0X14); Wire.write(0x02); Wire.endTransmission(); Serial.print("Data send\n"); } void loop() { }
Normally, when I run the code, an I2C command should be send to the DLP to flip the screen but it doesn't works.
I tried to connect 2 arduino to test the I2C and the command is received by the slave (arduino).
I tried to pull-up SDA and SCL with 10k Ohms but it doesn't works.
I have no idea of why it doesn't works so if anyone can help on it this will be great!
Many thanks in advance!