Hey guys,
I (finally) have a new problem. My I2c-module lcd runs pretty well in the Arduino environment and I connected successfully arduino with processing (firmata).
But when I try to use the lcd with firmata out of processing I fail.
I am not sure what I have to do. First I tried to work with the standard-firmata sletch on the arduino-board and modified the lcd-processing-sketch. Than I figured out that in the example exists a .pde called I2CFirmata and I uploaded that one on the arduino-board I modified my lcd-processing-sketch again.
Whatever I try it doesn't work.
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
If I delete the #include parts, Processing alerts that there is probably a syntax error with LiquidCrystal_I2C lcd(0x27,16,2);
If I don't delate the #include stuff I get an error-msg as well: unexpected char 'i'.
How can I make the i2c-lcd run with processing (firmata)?
Thx in advance!
import processing.serial.;
import cc.arduino.;
Arduino arduino;
LiquidCrystal_I2C lcd(0x27,16,2); // set the LCD address to 0x27 for a 16 chars and 2 line display