Skip to main content

Questions tagged [display]

A visual output device typically capable of displaying text and/or graphics. Can include various technologies, such as LCD (liquid-crystal display), OLED (organic light-emitting display), and EPD (electronic paper display).

Filter by
Sorted by
Tagged with
-1 votes
1 answer
126 views

I am using this 4-digit 7-segment display. So my circuit is basically 220 ohm resistors for all the segments (display pins 6 through 16 on the bottom each go through a resistor before going to a ...
qwr's user avatar
  • 175
0 votes
2 answers
151 views

I'm searching for the path and the source code for the builtin (I think) function, name is: renderBitmap(). This function appears as a member of the ArduinoLEDMatrix class but its name doesn't appear ...
Franck's user avatar
  • 25
0 votes
1 answer
192 views

I'm just about starting with Arduino, ESP8266, etc. The first project would be to get something diplayed on an e-paper. My hardware: LOLIN D1mini V4.0.0 Tri-Color ePaper 2.13 (SSD1680) Shield ...
theozh's user avatar
  • 105
0 votes
1 answer
596 views

I'm working on a project where I need to connect my ESP32 (WROOM) to a 3.5-inch, 480x320 resolution LCD designed for the Raspberry Pi, which uses the ILI9486 driver (as suggested by the lcd wiki). I’m ...
fine line's user avatar
  • 111
-1 votes
1 answer
225 views

Problem Description: I’m trying to interface a Waveshare 1.69-inch LCD module (ST7789V2 driver, 240x280 resolution) with an Arduino UNO board. I’ve connected all the necessary ports as per the ...
Skymero's user avatar
0 votes
1 answer
324 views

So I am using this 0.96" i2c yellow/blue OLED display: https://www.makerhero.com/produto/display-oled-0-96-i2c-azul-amarelo/ and an Arduino UNO clone. I have generated an image using this site ...
Clóvis Fritzen's user avatar
2 votes
2 answers
1k views

I am using the following TM1637 board with an Arduino Pro Micro clone. I am attempting to use the "TM1637Display Library" written by Avishay Orpaz, but I cannot find any way to use the four ...
LesRhorer's user avatar
  • 113
0 votes
1 answer
1k views

I'm learning to work with Arduino and I decided to work with a TFT display (driver ST7735S, I connect to Arduino Uno), but I encountered a problem in the form that my contacts are labeled differently ...
Prog's user avatar
  • 111
2 votes
0 answers
655 views

I have built a speedometer, based on this youtube video: https://www.youtube.com/watch?v=gKuJxjxNP-k&t=34s The speedometer is for a car, so it needs to be in real-time and accurate, with the ...
cool bean's user avatar
2 votes
3 answers
1k views

I am new to arduino and I am wondering if it is possible to store image data on my computer and send it to my arduino over the USB cable (which is also used for power) to display on a TFT LCD display ...
Clinterpottrmus's user avatar
1 vote
0 answers
811 views

I've been setting up a system using an Arduino Uno board that reads from both an Adafruit MPU6050 6-way gyroscope and accelerometer and an Adafruit NAU7802 connected to a load sensor. I have code for ...
HannahPlaysCello's user avatar
2 votes
1 answer
75 views

I am trying to use a Waveshare 4.2inch e-paper display with an Adafruit Feather Adalogger M0, but am having issues with two separate instances of #define GET_STATUS being defined differently in ...
BeingPool's user avatar
1 vote
0 answers
103 views

I am using MAX7219 8 digit 7 segment displays with Arduino Mega2560. Now, I have to physically space out the displays far from each other. Hence, after a certain distance the displays on the far end ...
Soumarya's user avatar
1 vote
0 answers
128 views

I have a Mega2560 and would like to use it to power a single fan and display. The fan is a 5V fan that draws 260mA and I can't find power specs for this display. I can't find a clear answer for how ...
David Carpenter's user avatar
0 votes
1 answer
2k views

I'm a 13 years old boy and I am doing a project with esp01 and an OLED screen to display project ideas on the OLED with the ChatGPT API. The answer is displayed on the OLED but I would like it to ...
Loic Daigle's user avatar
-1 votes
1 answer
132 views

I'd like to display a sentence character by character on a single seven-segment display. What happens is that if my sentence is longer than 48 characters the central segment doesn't light up. It works ...
Fab_x's user avatar
  • 1
1 vote
0 answers
230 views

I'm working on epaper display, and writing code in Segger embedded studio for nRF52840DK. Below is code for Driver IC IL0373 epaper display, has no response on paper display as it have driver IC ...
Just doin Gods work's user avatar
1 vote
0 answers
65 views

Things stop working if I use line 131 Serial.println(tt); and when I use line 145 display.drawPixel(i - ii, 64 - Harray[ii], SSD1306_WHITE); Also Serial Monitor gives very strange reading. Serial ...
sasha kirilova's user avatar
-1 votes
3 answers
1k views

I'm new to the field: I'm trying to drive a TFT ST7735S display (this is the model I'm currently using: https://www.amazon.it/dp/B078JBBPXK/ref=pe_24968671_487022601_TE_SCE_dp_1) with an Arduino Mega ...
Luke__'s user avatar
  • 103
1 vote
1 answer
197 views

simplified my goal is to display a transitional Background and some shapes. This shapes are not moving hard rasterized by 1 pixel, more like .1 each cycle. So I need a way to interpolate the movement ...
AngelOfEffekt's user avatar
1 vote
0 answers
216 views

I'm having problems using an HC-SR04 ultrasonic sensor in conjunction with an LED display module. The sensor appears to work fine when outputting values to the serial monitor, measuring distances up ...
Nicholas's user avatar
  • 111
1 vote
1 answer
1k views

I have this HT16K33 4 Digit 14-segment display I got brand new. I connected it to my Arduino UNO, wired it up and uploaded some quick test code. However, the display looks completely broken (see image ...
Benjythebee's user avatar
-3 votes
1 answer
140 views

so I have a problem with displaying a double variable in OLED & IR remote calculator, like this (using u8g2): displayTextOnRight(String(100000, 0)); //ex. of an void and a number It displays: &...
warriorCavt's user avatar
1 vote
0 answers
260 views

My Display is showing texts with strange characters in Chinese. how can i fix this #include <Arduino.h> #include <U8g2lib.h> #ifdef U8X8_HAVE_HW_SPI ...
Fabio Henrique's user avatar
0 votes
1 answer
173 views

Here my sample code for an Arduino Leonardo-based custom board: #include <LiquidCrystal.h> const int rs = 3, en = 0, d4 = 4, d5 = 30, d6 = 12, d7 = 6; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); ...
Mark's user avatar
  • 393
2 votes
1 answer
128 views

I need two displays hooked up to an Arduino MKR Wifi 1010, and I saw this video which shows how to do it: this video. I also would like to have a full color oled display about 1 inch big so I would ...
user avatar
1 vote
1 answer
589 views

I've been trying to connect a MPU 6050 Accelerometer, Gyroscope and Temperature Sensor to a LILYGO TTGO T-Display to get readings displayed on the serial monitor (for starters). The wiring is pretty ...
C Vith's user avatar
  • 133
-1 votes
2 answers
117 views

So I have 5 Nanos all trying to crack a password, the idea is each one has one fifth of the list so they can test 5 at a time, then when it is found, I want it to be displayed on a screen I have, the ...
ProfMonkey07's user avatar
2 votes
1 answer
396 views

I have one display screen, and 5 Arduino Nanos. They are checking to see if passwords in a text file hash to a specific hash, then display it on the screen when found. Since they aren't all sending ...
ProfMonkey07's user avatar
2 votes
4 answers
1k views

I work in a warehouse and I was tasked to make a device which will show the location of any product when Product ID is given. All of our product has 3 things. Product ID, Rack Number and Gap number. ...
Imteaj007's user avatar
0 votes
1 answer
2k views

String abc ="0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff"; const unsigned char displaydata={reinterpret_cast<const unsigned char*>(abc.c_str())}; display.drawBitmap(...
Coder06's user avatar
-1 votes
1 answer
334 views

How to light up the two points that is in the middle? It only lights up when the digB is set to LOW, and it lights up all 3 points that is in the middle. Example code: const int displayPins[] = {2,3,...
mario's user avatar
  • 101
1 vote
0 answers
105 views

I am using Arduino MKR1500 with adafruit 1.3 inch display(https://www.adafruit.com/product/4313) and I want to rotate the font on the screen by 90 degree. I tried setRotation() and added an angle in ...
Dave's user avatar
  • 69
0 votes
1 answer
270 views

I'm trying to run Waveshare SSD1327 128x128 screen via SPI on ESP32 WROOM32 board. On ESP8266 (D1R1?) it works flawlessly while using HW SPI but when I run it on esp32, anything connected to mains ...
user1726744's user avatar
1 vote
1 answer
365 views

I have an array of 64-bit integers to display on an 8x8 led matrix const int LEN1 = sizeof(Hours); const uint64_t Hours[] = { 0x00043c3c3c3c3c00, 0x000c3c3c3c3c3c00, 0x001c3c3c3c3c3c00, ...
gio xanchkava's user avatar
0 votes
1 answer
189 views

I have this simple program, where I am implementing a menu structure on an OLED display and a rotary encoder. The code works functionally as intended, however when I add more menu items, then I get ...
Thomas Hirsch's user avatar
1 vote
0 answers
95 views

I have a screen just like this (is the datasheet). My question is, Can I use it to an Arduino board?
Wolffyx's user avatar
  • 21
1 vote
1 answer
255 views

I have connected arduino nano every to my lcd display. It works perfect when i put all my code in setup() part. But when i put the code in loop() it does werid things. I have to put my code in loop(), ...
animos_be's user avatar
4 votes
1 answer
549 views

I can't remember for the life of me how exactly I set up this screen in previous models, partially because the references I'm using in my code have different names from the pins on the Adafruit ...
Tyler Wallentine's user avatar
0 votes
1 answer
587 views

I am trying to create a clock using a ST7789 display and a DS3231 RTC. In this clock I want to use NTP to keep it synced and maybe use the WiFi to anything else. My problem started when I have tried ...
Daniel Carrasco Marín's user avatar
1 vote
1 answer
731 views

I bought this TFT display on Aliexpress. It says "MCUDEV_TFT1.44" below the display. I can't find online how to connect it to Arduino. The pins are as follows: BLK RS RST CS SC DI GND VCC ...
OrangeBike's user avatar
2 votes
1 answer
1k views

I am attempting to make an Arduino counter using a 4 digit 7 segment display. The problem I am encountering is the display flickers. I am using an Arduino Uno and 5641AS digit display (so common ...
Sony's user avatar
  • 110
0 votes
2 answers
192 views

I want to detect wether a display is connected or not. This is the display: https://www.az-delivery.de/en/products/1-77-zoll-spi-tft-display I read connecting a pin of the display with another pin ...
Joh's user avatar
  • 121
-1 votes
1 answer
442 views

I would like to display 65k color animated gifs on my oled. I'm using the adafruit library for https://learn.adafruit.com/096-mini-color-oled Now I need to convert a significant number of images to ...
Andreas's user avatar
  • 121
2 votes
0 answers
2k views

I've got an Arducam OV2640 which takes a picture as a JPEG that I'd like to send to another Arduino using a pair of nRF24L01 wireless transceivers to eventually display it on an SSD1351 OLED. ...
JShoe's user avatar
  • 21
1 vote
0 answers
667 views

I am developing a product in which i have to use 5 LCDs. The LCD i am using does not contain CS pin. SO i had to use MUX for muxing of complete SPI bus from one LCD to other. But the issue i am facing ...
faiz07's user avatar
  • 11
3 votes
2 answers
2k views

I am using an Arduino Mega to display the readings of 4 pots on a Nextion Display as well as store them on an SD Card with a time stamp. I keep getting: recvRetCommandFinished err on the serial ...
Niteesh Shanbog's user avatar
1 vote
0 answers
1k views

Q: Is it possible to send data in variables from Arduino to Nextion through SerialPrint? If so, what is the correct syntax? I have an Arduino Uno connected to a Nextion NX4024T032 and a Sunfounder ...
Jonathan Talbot's user avatar
0 votes
1 answer
143 views

I don't know whether this is possible or not but is there any way that I can run something similar to Android on a normal TFT. I want to make complex graphics but can't program those complex programs ...
DragonflyRobotics's user avatar
3 votes
1 answer
3k views

I am wanting to have a display where I can design the GUI on a program and then somehow transfer it to the display. For the graphics I want to make, it would be really hard to manually write the code. ...
DragonflyRobotics's user avatar

1
2 3 4 5