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
-1
votes
2 answers

Can you copy over macbook screen color calibration profiles? Spyder3Pro

I've bought an 11" and a 13" macbook air and borrowing a spyder3pro from my friend to calibrate the screens. I am trying out the macbook air's and returning one. I'd like to calibrate both the screens and then also my home external lcd screen and my…
Spawn
  • 1
  • 1
-1
votes
1 answer

How to accept input from user after alarm is triggered

So as of right now when I arm the system and move my hand in front of the PIR sensor it says system triggered how do i get it to take a password from the user to deactivate the system. Also when the system is deactive it should say on the screen…
-1
votes
1 answer

Raspberry Pi and LCD screen

I have a pi3 and I want to connect it to my monitor that came from my old computer. The problem is that it is a monitor and a webcam combined, and the cable is too wide for the connectors. I was wondering if I could use the gpio pins, and if so,…
-1
votes
1 answer

LCD outputs japanese characters I have tried everything

I am at last resort, I have tried everything! I changed libraries I changed pins multiple times I tried to mix up pins I went on all possibles sites including ada, sparkfun anything I tried custom characters and make my own characters This thing…
The Law
  • 83
  • 1
  • 14
-1
votes
1 answer

mbed application board lcd screen button control

#include "mbed.h" #include "C12832_lcd.h" #include #include #include C12832_LCD lcd;//creating LCD object Serial s_comms(USBTX, USBRX);//creating a serial comms object DigitalIn…
JoeB
  • 1
  • 4
-1
votes
1 answer

Avoiding strips after capturing photo from LCD display

I have faced with such problem, when I capture photo from LCD display there are annoying rainbow strips. Is there any way to clear image from them doing some computer vision stuff? Which are the keywords should I google for? Or maybe some useful…
-1
votes
1 answer

How to connect pins on Atmega32 to 4 bit LCD so this code works

I have this code that I want to fiddle with, analyze an hopefully learn m ore about it. It is suppose to make Atmega32 operate an LCD display without the use of proper Libraries. I'm new to this - I'm trying to figure out through which pins should…
-1
votes
1 answer

with the same code i get two different answers from two port in ATMEGA16A

i'm trying to make a calculator which needs two keyboards with ATMEGA16A i have wrote a code for getting input from the keyboard and it's working on PORTB but the same code (with just changing B to C)doesn't work on PORTC!! please help me i'm…
Mina
  • 1
  • 2
-1
votes
2 answers

If then statement c programming

I was wondering if someone could help me write an if then statement for a ping.. Example IP: 192.168.10.1 Here's what I have so far.. lcd_command(LINE_1); if system(("ping -c1 192.168.10.1")) { lcd_writechars("Ping Successful"); } else…
user5520817
-1
votes
3 answers

How can I improve the look of a window created in python?

I want to create a window that does not look like a window from windows xp. I want a plain box with no bar on the top. Is this possible? I am trying to make a gui but I want a full screen fixed display. Btw I am using, or would like to use…
-1
votes
1 answer

GLCD Library : GLCD.H & UTILITY.H

I am working upon Interfacing GLCD with LPC2148. Please share library for GLCD Library : To include in program #include "Glcd.h" #include "Utility.h" Else share path where i can get ? Regards, Vijay
-1
votes
2 answers

Join two variable and LCD print

I am having a variable name day=3 . I wanted to print on lCD as 03 .concept i am trying to impliment is as below int term1; int term2; int day=3; term1=day%10;// here i get the actual term day term2=(int)(day/10). here i get term 0. Now i wanted…
RKNAYAK
  • 55
  • 1
  • 3
  • 9
-1
votes
1 answer

While displaying on an lcd eg: after 36.7 next no is 37. I dont know why 36.8 and 36.9 is rounded off

CODE description: Code to convert float to ascii to be displayed on a touchscreen. It rounds of decimals after 0.7 , i.e. it does not display 0.8 and 0.9 .I have tried a lot of debugging but i am not able to solve this. I think the problem…
-2
votes
1 answer

LCD ESP8266WiFi access point Send Text

hello i am trying to send data to lcd screen ,but they arrive as GET/ DATO /HTTP 1.1 I ONLY NEED TO ARRIVE DATA AND DELETE (GET/ /HTTP 1.1) I am used to the esp8266 by wifi in access point mode the program works well request is the data that arrives…
-2
votes
1 answer

Send LCD output from RPi to remote RPi wirelessly

I am trying to send a 16x2 LCD output to a remote RPi wirelessly using python code. I am having difficulty finding information online about this and am wondering if any of you could help me. I am very new to python and RPis. Background on project: I…