BV4611 LCD128x64 and arduino February 09, 2014 12:16PM |
Registered: 9 years ago Posts: 2 |
Re: BV4611 LCD128x64 and arduino February 09, 2014 01:00PM |
Admin Registered: 11 years ago Posts: 351 |
Re: BV4611 LCD128x64 and arduino February 15, 2014 09:42AM |
Registered: 9 years ago Posts: 2 |
#include <BV4613.h> #include <Geometria.h> #include <twi.h> #include <Wire.h> void setup() { Wire.begin(); Wire.beginTransmission(0x68); // send i2c address with Wire.send(27); // esc Wire.send(91); // [ Wire.send(34); // 4 Wire.send(59); // ; Wire.send(32); // 2 Wire.send(37); // 7 Wire.send(72); // H Wire.endTransmission(); // stop condition } void loop() { }
Re: BV4611 LCD128x64 and arduino February 15, 2014 09:56AM |
Admin Registered: 11 years ago Posts: 351 |
Re: BV4611 LCD128x64 and arduino April 06, 2014 01:58PM |
Registered: 9 years ago Posts: 4 |
Re: BV4611 LCD128x64 and arduino April 06, 2014 02:30PM |
Registered: 9 years ago Posts: 4 |
Re: BV4611 LCD128x64 and arduino April 07, 2014 10:00AM |
Admin Registered: 11 years ago Posts: 351 |
Re: BV4611 LCD128x64 and arduino April 08, 2014 08:31AM |
Registered: 9 years ago Posts: 4 |
Re: BV4611 LCD128x64 and arduino April 08, 2014 07:24PM |
Registered: 9 years ago Posts: 4 |
Re: BV4611 LCD128x64 and arduino April 11, 2014 06:03PM |
Admin Registered: 11 years ago Posts: 351 |