Questions tagged [lcd]

LCD is an abbreviation for Liquid Crystal Display.

LCD is an abbreviation for Liquid Crystal Display. Liquid crystal is one of several technologies used in monitors today.

577 questions
2
votes
1 answer

Connecting Waveshare LCD1602 RGB to Raspberry using C#

I am trying to connect LCD1602 RBG Waveshare to the Raspberry using C#. I connected it to the Raspberry and set the permissions, now trying to pass some data. The code below run all lines, but the LCD is not reacting. If anyone can advise me. using…
Darkk L
  • 889
  • 1
  • 4
  • 14
2
votes
2 answers

Problems executing code after Keyboardinterrupt

I wrote a super simple thingy for this 20x4 LCD screen and I keep on getting this whenever I Interrupt with crtl + c instead of it executing the code I've placed there. Here's the Error: CTraceback (most recent call last): File "lcd/clock.py",…
Marcel
  • 65
  • 5
2
votes
0 answers

How do I properly draw a frame with an ILI9341? Arduino

I have a 2.8 inch TFT LCD from Adafruit driven by an ILI9341. To draw on the LCD, I use the commands 0x2A to set the width, 0x2B to set the height, and 0x2C to color each pixel (I2C). My problem is that I currently draw the background as a…
Rojo
  • 2,749
  • 1
  • 13
  • 34
2
votes
1 answer

How to loop the video on mplayer with Raspberry Pi?

I'm currently trying to play a video clip using a Raspberry Pi with 3.5-inch touch display. I know that omxplayer has the function to make it loop, but from some reason omxplayer can't play my video on 3.5inch LCD display. So I have only the option…
m-1127
  • 21
  • 2
2
votes
0 answers

My driver for ILI9325 on stm32f103 works in Atollic TrueStudio, but doesn't work in Arduino IDE

I'm trying to connect stm32f103c8t6 board with ILI9325 LCD display. I have created a driver for it in Atollic TrueStudio and run it successfully. Now, I am trying to transfer the driver to the Arduino IDE, because here it will be easier to integrate…
2
votes
1 answer

Wrong values are displayed on LCD

I'm using Tiva c to drive an LCD but some characters and numbers are wrong displayed, for example, N is displayed as L, 2 and 3 are displayed as 0 but other characters and letters are displayed correctly. Here is the function that displays…
Andy
  • 23
  • 4
2
votes
3 answers

Is there a way to query the current brightness level of a the MacBook LCD?

The idea being that, once the brightness passes a certain level, one could switch to a different visual scheme to give greater visibility. Also, if it could be some sort of listener type thing, that would be even better, but I'll take what I can…
Paul Wicks
  • 62,960
  • 55
  • 119
  • 146
2
votes
0 answers

Question about reading signal timing diagram

I am trying to create a library to interface a graphical LCD using the ILI9341 driver to a PIC uC. My question is about the following timing diagram from the ILI9341 datasheet (follow the link, since I can't post pictures yet). I am confused about…
picman
  • 21
  • 1
2
votes
2 answers

Serial Data Read and parse to variables from continuous string (Arduino)

I have 2 Arduino and 2 xbee. I send 2 sensor data from Arduino 1 (router) to Arduino to (coordinator): On coordinator, I receive wireless data from this 2 sensors(from router) perfectly. The data stream is something like this: 20.1324325452924…
Lazar Vlad
  • 23
  • 1
  • 5
2
votes
1 answer

Raspberry Pi 16x2 LCD Screen Glitches After a Few Seconds

I have a 16x2 LCD Screen that displays the time and date live. The problem is, it starts automatically on boot, but glitches out when it does. What happens when it starts on boot In rc.local, I have added a line that says (sleep 10; python…
henry
  • 103
  • 1
  • 7
2
votes
0 answers

Interfacing 20x4 character LCD with TI TM4C1294 generates some random characters

I have a 20x4 character LCD connected to my TI TM4C1294 kit as follows: Data bus to port A. RS, RW and E pins to port L 0-2 I wrote this code in order to drive it: #include #include #include "inc/tm4c1294ncpdt.h" #include…
3bdalla
  • 407
  • 1
  • 10
  • 28
2
votes
1 answer

Raspberry Pi and RetroPie distro plus LCD

I downloaded RetroPie for my RaspberryPi 3 from this link and have been trying to get my 3.5" LCD to work. I downloaded the driver from here as described, but whenever I try and extract it with the "tar xzvf LCD_show_v6_1_3.tar.gz", the file for the…
2
votes
1 answer

meaning of setCursor(X,Y) coordinates

This example sketch shows how to use the setCursor() method to reposition the cursor. To move the cursor, just call setCursor() with a row and column position. For example, for a 2x16 display: lcd.setCursor(0, 0); // top left lcd.setCursor(15, 0);…
Reshu Singh
  • 65
  • 1
  • 2
  • 5
2
votes
0 answers

Incoherent behavior on Arduino/SD card

For my project, I use an µSD card, with the socket included in this LCD screen for logging. A few months ago, it worked fine, I developped that side of the project, but now it just always answer "failed init of SD card". I tried using the SDfat…
abellaiche
  • 21
  • 1
2
votes
2 answers

2 digit BCD counter on FPGA

I'm trying to make a 2 digit BCD counter which would count from 0 to 99. The problem I'm facing is that both the 7-segment dispays on the board are changing digits at the same time. The scenairio is like this - 00, 11, 22...99. Here's the main logic…
archity
  • 562
  • 3
  • 11
  • 22
1 2
3
38 39