Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] Help with an i2c lcd EAT123W-I2C

Status
Not open for further replies.

pvdbos

Newbie level 3
Joined
Jun 2, 2010
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
netherlands
Activity points
1,301
I have a problem with an I2C LCD (EAT123W-I2C) that have a PCF2116-C chip on board
is there a Library for this chip?, or can someone create a library for it
this is a LCD from Conrad Bestnr.: 181891 – 89
link: [URL="http://www.lcd-module.de"/URL]
[URL="http://www.conrad.nl"/URL]
[URL="http://www.lcd-module.com//deu/pdf/doma/t123-i2c.pdf"/URL]

I use Bascom-avr

$regfile = "m168def.dat"
$crystal = 20000000
$hwstack = 32
$swstack = 8
$framesize = 24
$baud = 115200
$sim
$lib "Lcd_i2c.lib" >>>>>>>is there an library for this chip??? '
Config I2cdelay = 1
Const Pcf8574_lcd = &H40
Config Scl = Portc.0
Config Sda = Portc.1
Dim _lcd_e As Byte
_lcd_e = 192
Config Lcd = 12 * 3
Cls
Cursor Off
Locate 1 , 1
Lcd "Eindelijk"
Wait 1
Locate 2 , 1
Wait 1
Lcd "!@#$%^&*()-_=+"
Wait 1
Locate 3 , 1
Lcd "Gelukt !"
_________________
http://www.hobbyrobots.nl
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top