Sida 1 av 1

Problem med stor LCD HD44780 20X4 BIG

Postat: 28 dec 2014, 17:31
av jenza
Hej

Jag har ett gäng av följande vara:

https://www.m.nu/hd44780-20x4-character ... p-331.html

och en

https://www.m.nu/character-backpack-p-1185.html

Nu sist köpte jag en LCD med fastlöd list då jag läste att dessa var funktionstestade men utan lycka!

I2Cn dycker upp i raspberry pin med i2cdetect men displayen tänds inte upp och får inte ut någon test närj ag kör "demo" filer utan error output.

Vad kan jag göra fel, behövs antagligen mer info men vet inte vilken. Vart skall jag fortsätta felsökningen? Tips?

Re: Problem med stor LCD HD44780 20X4 BIG

Postat: 28 dec 2014, 19:14
av elf98
På vilka pinnar har du kopplat in displayen? den har 18 pinnar medans backpacken har 16. Pinne 17-18 används ej.

Re: Problem med stor LCD HD44780 20X4 BIG

Postat: 28 dec 2014, 21:24
av jenza
Har lödit på i2c kretskortet på baksidan med tejp mellan displayen och kortet för att undvika kortslutning. Skall i2c kortat fungera med denna lcd?

Re: Problem med stor LCD HD44780 20X4 BIG

Postat: 28 dec 2014, 21:32
av elf98
Ja, det är en standarddisplay. Kan du bifoga en bild på hur du monterat kortet?

Re: Problem med stor LCD HD44780 20X4 BIG

Postat: 28 dec 2014, 21:40
av jenza

Re: Problem med stor LCD HD44780 20X4 BIG

Postat: 28 dec 2014, 22:00
av elf98
Vad får du för felmeddelande? Kör du kommandona som root?

Re: Problem med stor LCD HD44780 20X4 BIG

Postat: 31 dec 2014, 00:54
av jenza
Kör följande guide

http://www.raspberrypi.org/forums/viewt ... 45&t=64992
Utan framgång, displayen hittas men det tänds ingen backlight när man kör igång raspberryin, skall det göra de?

När jag kör guiden ovan så får jag följande rader

Kod: Markera allt

root@raspberrypi:/home/pi# ./lcdtest.py 
get board revision= 2
i2cbus= 1
sen står det stilla och inget händer på displayen, inget jag ser iaf då backlighten är avstängd, vrider jag på kontrasten får jag fyrkanter på varannan rad

Re: Problem med stor LCD HD44780 20X4 BIG

Postat: 31 dec 2014, 01:02
av elf98
Fyrkanter, då har inte displayen initierats korrekt. Se över lösningarna och inkopplingen till R-Pi.

Re: Problem med stor LCD HD44780 20X4 BIG

Postat: 04 jan 2015, 00:14
av jenza
Har kört fast, då jag är en "prövare" har jag inte den rätta grundkunskapen längre.

Har kört denna guide nu

http://www.stuart-taylor.net/adafruit-i ... pberry-pi/

Kommer till

Kod: Markera allt

Ok, lets test by running the lcdproc client to send some data to our newly created LCDproc server.

pi@raspberrypi ~ $ sudo lcdproc
och får följande felmeddelande

Kod: Markera allt

root@raspberrypi:/home/pi# sudo lcdproc
sock_connect: connect failed
Error connecting to LCD server localhost on port 13666.
Check to see that the server is running and operating normally.
root@raspberrypi:/home/pi# 
Någon som har tips om en bra howto eller vet vad som kan vara fel? har dubbelkollat min config fil och jämfört lite med andra, tycker den ser rätt ut!

/etc/LCDd.conf

Kod: Markera allt

LCDd.conf -- configuration file for the LCDproc server daemon LCDd
#
# This file contains the configuration for the LCDd server.
#
# The format is ini-file-like. It is divided into sections that start at
# markers that look like [section]. Comments are all line-based comments,
# and are lines that start with '#' or ';'.
#
# The server has a 'central' section named [server]. For the menu there is
# a section called [menu]. Further each driver has a section which
# defines how the driver acts.
#
# The drivers are activated by specifying them in a driver= line in the
# server section, like:
#
#   Driver=curses
#
# This tells LCDd to use the curses driver.
# The first driver that is loaded and is capable of output defines the
# size of the display. The default driver to use is curses.
# If the driver is specified using the -d <driver> command line option,
# the Driver= options in the config file are ignored.
#
# The drivers read their own options from the respective sections.



## Server section with all kinds of settings for the LCDd server ##
[server]

# Where can we find the driver modules ?
# IMPORTANT: Make sure to change this setting to reflect your
#            specific setup! Otherwise LCDd won't be able to find
#            the driver modules and will thus not be able to
#            function properly.
# NOTE: Always place a slash as last character !
DriverPath=/usr/lib/lcdproc/

# Tells the server to load the given drivers. Multiple lines can be given.
# The name of the driver is case sensitive and determines the section
# where to look for further configuration options of the specific driver
# as well as the name of the dynamic driver module to load at runtime.
# The latter one can be changed by giving a File= directive in the
# driver specific section.
#
# The following drivers are supported:
#   bayrad, CFontz, CFontzPacket, curses, CwLnx, ea65, EyeboxOne, g15, glcd,
#   glcdlib, glk, hd44780, icp_a106, imon, imonlcd,, IOWarrior, irman, joy,
#   lb216, lcdm001, lcterm, lirc, lis, MD8800,, mdm166a, ms6931, mtc_s16209x,
#   MtxOrb, mx5000, NoritakeVFD, picolcd,, pyramid, rawserial, sdeclcd,
#   sed1330, sed1520, serialPOS, serialVFD, shuttleVFD, sli,, stv5730, svga,
#   t6963, text, tyan, ula200, vlsys_m428, xosd
Driver=hd44780

# Tells the driver to bind to the given interface. [default: 127.0.0.1]
Bind=127.0.0.1

# Listen on this specified port. [default: 13666]
Port=13666

# Sets the reporting level; defaults to warnings and errors only.
# [default: 2; legal: 0-5]
#ReportLevel=3

# Should we report to syslog instead of stderr? [default: no; legal: yes, no]
#ReportToSyslog=yes

# User to run as.  LCDd will drop its root privileges and run as this user
# instead. [default: nobody]
User=nobody

# The server will stay in the foreground if set to yes.
# [default: no, legal: yes, no]
#Foreground=yes

# Hello message: each entry represents a display line; default: builtin
#Hello="  Welcome to"
#Hello="   LCDproc!"

# GoodBye message: each entry represents a display line; default: builtin
#GoodBye="Thanks for using"
#GoodBye="   LCDproc!"

# Sets the default time in seconds to displays a screen. [default: 4]
WaitTime=5

# If set to no, LCDd will start with screen rotation disabled. This has the
# same effect as if the ToggleRotateKey had been pressed. Rotation will start
# if the ToggleRotateKey is pressed. Note that this setting does not turn off
# priority sorting of screens. [default: on; legal: on, off]
#AutoRotate=off

# If yes, the the serverscreen will be rotated as a usual info screen. If no,
# it will be a background screen, only visible when no other screens are
# active. The special value 'blank' is similar to no, but only a blank screen
# is displayed. [default: on; legal: on, off, blank]
#ServerScreen=off

# Set master backlight setting. If set to 'open' a client may control the
# backlight for its own screens (only). [default: open; legal: off, open, on]
#Backlight=open

# Set master heartbeat setting. If set to 'open' a client may control the
# heartbeat for its own screens (only). [default: open; legal: off, open, on]
#Heartbeat=open

# set title scrolling speed [default: 10; legal: 0-10]
#TitleSpeed=10

# The "...Key=" lines define what the server does with keypresses that
# don't go to any client. The ToggleRotateKey stops rotation of screens, while
# the PrevScreenKey and NextScreenKey go back / forward one screen (even if
# rotation is disabled.
# Assign the key string returned by the driver to the ...Key setting. These
# are the defaults:
ToggleRotateKey=Enter
PrevScreenKey=Left
NextScreenKey=Right
#ScrollUpKey=Up
#ScrollDownKey=Down

Kod: Markera allt

## Hitachi HD44780 driver ##
[hd44780]

# Select what type of connection. See documentation for availabe types.
ConnectionType=i2c

# I/O address of the LPT port. Usual values are: 0x278, 0x378 and 0x3BC.
# For I2C connections this sets the slave address (usually 0x20).
Port=0x20

# Device of the serial, I2C, or SPI interface [default: /dev/lcd]
Device=/dev/i2c-1

# Bitrate of the serial port (0 for interface default)
Speed=0

# If you have a keypad connected.
# You may also need to configure the keypad layout further on in this file.
Keypad=no

# Set the initial contrast (bwctusb, lcd2usb, and usb4all)
# [default: 800; legal: 0 - 1000]
#Contrast=0

# Set brightness of the backlight (lcd2usb and usb4all):
# Brightness is the brightness while the backlight is set to 'on'.
# [default: 800; legal: 0 - 1000]
#Brightness=1000

# OffBrightness is the brightness while the backlight is set to 'off'.
# [default: 300; legal: 0 - 1000]
#OffBrightness=0

# If you have a switchable backlight.
Backlight=no

# If you have the additional output port ("bargraph") and you want to
# be able to control it with the lcdproc OUTPUT command
OutputPort=no

# Specifies if the last line is pixel addressable (yes) or it controls an
# underline effect (no). [default: yes; legal: yes, no]
#Lastline=yes

# Specifies the size of the LCD.
# In case of multiple combined displays, this should be the total size.
Size=20x4

# For multiple combined displays: how many lines does each display have.
# Vspan=2,2 means both displays have 2 lines.
#vspan=2,2

# If you have an HD66712, a KS0073 or another controller with 'extended mode',
# set this flag to get into 4-line mode. On displays with just two lines, do
# not set this flag.
# As an additional restriction, controllers with and without extended mode
# AND 4 lines cannot be mixed for those connection types that support more
# than one display!
#ExtendedMode=yes

# In extended mode, on some controllers like the ST7036 (in 3 line mode)
# the next line in DDRAM won't start 0x20 higher. [default: 0x20]
#LineAddress=0x10

# Character map to to map ISO-8859-1 to the LCD's character set
# [default: hd44780_default; legal: hd44780_default, hd44780_euro, ea_ks0073,
# sed1278f_0b, hd44780_koi8_r, hd44780_cp1251, hd44780_8859_5, upd16314 ]
# (hd44780_koi8_r, hd44780_cp1251, hd44780_8859_5 and upd16314 are possible if
# compiled with additional charmaps)
CharMap=hd44780_default

# If your display is slow and cannot keep up with the flow of data from
# LCDd, garbage can appear on the LCDd. Set this delay factor to 2 or 4
# to increase the delays. Default: 1.
#DelayMult=2

# Some displays (e.g. vdr-wakeup) need a message from the driver to that it
# is still alive. When set to a value bigger then null the character in the
# upper left corner is updated every <KeepAliveDisplay> seconds. Default: 0.
#KeepAliveDisplay=0

# If you experience occasional garbage on your display you can use this
# option as workaround. If set to a value bigger than null it forces a
# full screen refresh <RefreshDiplay> seconds. Default: 0.
#RefreshDisplay=5

# You can reduce the inserted delays by setting this to false.
# On fast PCs it is possible your LCD does not respond correctly.
# Default: true.
DelayBus=false

# If you have a keypad you can assign keystrings to the keys.
# See documentation for used terms and how to wire it.
# For example to give directly connected key 4 the string "Enter", use:
#   KeyDirect_4=Enter
# For matrix keys use the X and Y coordinates of the key:
#   KeyMatrix_1_3=Enter
KeyMatrix_4_1=Enter
KeyMatrix_4_2=Up
KeyMatrix_4_3=Down
KeyMatrix_4_4=Escape

Re: Problem med stor LCD HD44780 20X4 BIG

Postat: 04 jan 2015, 00:16
av jenza
Vid alla tester får jag bara upp två linjer med fyrkanter, troligvisn något med drivrutiner?

Re: Problem med stor LCD HD44780 20X4 BIG

Postat: 04 jan 2015, 10:41
av elf98
guiden du följer ser ut att vara för denna: https://learn.adafruit.com/adafruit-16x ... spberry-pi

MCP23017 och MCP23008 ligger på olika i2c-adresser, så kör en i2cdetect och korrigera adressen. Vet dock inte hur inkopplingen skiljer sig mellan produkterna, så ev måste mer korrigeras.