Avis des clients

Ecrire un commentaire
  • Tous les Commentaires (1047)
  • Image (101)
  • Vidéo (2)
  • Toutes les Étoiles
    • Toutes les Étoiles(1047)
    • 5 Étoile(1001)
    • 4 Étoile(34)
    • 3 Étoile(9)
    • 2 Étoile(2)
    • 1 Étoile(1)
Trier par:
Commentaire Top
  • Commentaire Top
  • Le plus utile
  • Le plus récent
Avis uniquement de votre pays (United States)
|
Afficher l'original

Une partie de la critique a été traduite automatiquement.

  • 14/02/2015

    Good display. You need to set the potmeter to see characters. First run a program to display characters. I used library https://bitbucket.org/fmalpartida/new-liquidcrystal/downloads Instruction for installation of that library http://arduino-info.wikispaces.com/Arduino-Libraries#NewLib Finally an example program can be found at http://arduino-info.wikispaces.com/LCD-Blue-I2C the last program, only modified it for address 0x27 and 16 x 2 characters For all library routines have a look at your library documentation, in my case C:\Arduino\arduino-1.05\reference in file LiquidCrystal.html

    Commentaires (1)
    Afficher l'original
  • 05/09/2015

    Hi all - I used the banggood recommended library: https://app.box.com/s/dl5ntat7o0f3okee9suo though the example hello world didn't work at first. I used I2C scanner (http://playground.arduino.cc/Main/I2cScanner?action=sourceblock&num=1) which detected it at address 0x3F rather than the documented 0x27 default (and 0x20 setting in the example code!). just correct this line in the example and it works great!: LiquidCrystal_I2C lcd(0x3F,16,2); // set the LCD address to 0x3F for a 16 chars and 2 line display Thanks!

    Commentaires
    Afficher l'original
  • 19/12/2015

    So here it is, for all the noobs like me: 1. Connect the screen with SDA to A5 (Arduino UNO) SCL to A4 2. Go to http://playground.arduino.cc/Main/I2cScanner Copy the scanner code and run it. Get the adress . Mine was 0x3F. 3. Get the New Liquid Crystal Library at https://bitbucket.org/fmalpartida/new-liquidcrystal/downloads. 4. Include these libraries in your sketch: #include #include #include 5. Copy and paste this code: #define I2C_ADDR 0x3F // <<----- Add your address here. Find it from I2C Scanner #define BACKLIGHT_PIN 3 //This is the correct pinout definition #define En_pin 2 //for this screen! Several other #define Rw_pin 1 //exaples have wrong ones! #define Rs_pin 0 #define D4_pin 4 #define D5_pin 5 #define D6_pin 6 #define D7_pin 7 LiquidCrystal_I2C lcd(I2C_ADDR,En_pin,Rw_pin,Rs_pin,D4_pin,D5_pin,D6_pin,D7_pin); void setup() { lcd.begin (16,2); // <<----- My LCD was 16x2 // Switch on the backlight lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE); lcd.setBacklight(HIGH); lcd.home (); // go home lcd.setCursor (5,0); // 3 is position on row,0 is top row lcd.print("H"); delay(500); lcd.setCursor (6,0); lcd.print("E"); delay(500); lcd.setCursor (7,0); lcd.print("L"); delay(500); lcd.setCursor (8,0); lcd.print("L"); delay(500); lcd.setCursor (9,0); lcd.print("O"); delay(1000); lcd.setCursor (5,1);//0 is position on row,1 is bottom row lcd.print("WORLD"); delay(1000); lcd.clear(); delay(500);} void loop() { lcd.home(); lcd.setCursor (0,0); lcd.print("LOADING "); delay(1000); lcd.clear(); delay(1000); }

    Commentaires
    Afficher l'original
  • 23/04/2018

    Works on i2C address 0x27 on first try...

    Commentaires
    Afficher l'original
  • 18/05/2016

    Came as described, fast from EU warehouse. Got it working pretty quick after a few guides and how to setup (never played with I2C or LCD screens before). With the library for arduino I found it's easy to use once setup done. As many others it arrived out of focus, need to adjust the potentiometer on the back - also I was a bit confused why it didn't seem to work when connecting the arduino to computer (1 full line of black squares, one blank line)... But opening serial monitor (if a serial is set in the code) or uploading code seems to reset it. Connecting arduino to a powersource (vin) it works normally first time. I guess it's the connection to computer that makes a problem, but uploading code or resetting it with serial monitor starts everything. All in all very pleased, and more will be ordered for other projects. Actually I ordered this for another project but now it's used... Need a new already :) The only thing I don't like is the pins on top of the screen, they are long - but a wirecutter fixes that quick (photo).

    Commentaires
    Afficher l'original
  • 09/04/2015

    //NOTE: Tested on Arduino Uno on I2C pins are A4==SDA, A5==SCL #include #include #include #define I2C_ADDR 0x27 // <<----- Add your address here. Find it from I2C Scanner #define BACKLIGHT_PIN 3 #define En_pin 2 #define Rw_pin 1 #define Rs_pin 0 #define D4_pin 4 #define D5_pin 5 #define D6_pin 6 #define D7_pin 7 int n = 1; LiquidCrystal_I2C lcd(I2C_ADDR,En_pin,Rw_pin,Rs_pin,D4_pin,D5_pin,D6_pin,D7_pin); void setup() { lcd.begin (16,2); // <<----- My LCD was 16x2 // Switch on the backlight lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE); lcd.setBacklight(HIGH); lcd.home (); // go home lcd.setCursor (3,0); // 3 is position on row,0 is top row lcd.print("LCD_I2C_16x2"); lcd.setCursor (0,1);//0 is position on row,1 is bottom row lcd.print("Only 2 pins used"); } void loop() { // Backlight on/off every 3 seconds //lcd.setCursor (0,1); // go to start of 2nd line //lcd.print(n++,DEC); //lcd.setBacklight(LOW); // Backlight off // delay(1000); //lcd.setBacklight(HIGH); // Backlight on //delay(3000); }

    Commentaires
    Afficher l'original
  • 14/07/2020

    Mal emballé, quand il est arrivé les broches étaient tous pliés, facilement redressé rapidement livré.

    Commentaires
    Afficher l'original
  • 09/12/2018

    Nítido, perfeito, bem embalado, ótimo acabamento, sondas perfeitas e sem pontas. RECOMENDO

    Commentaires
    Afficher l'original
  • 27/10/2018

    Great product, the main advantage is that it is working by utilising the lesser RAM and happy with the product.

    Commentaires
    Afficher l'original
  • 27/11/2020

    C'est un bel affichage et assez bien protégé avec un film antistatique et un peu de plastique à bulles pour un rembourrage supplémentaire (aussi l'écran avait un film de protection sur elle).

    Commentaires
    Afficher l'original
Show:

    Total 0 pages

    Aller à la page

    Vous pourriez être intéressé par

    recommendation for you
    • US$3.99
    • US$56.99
    • US$45.99
    • US$6.99
    • US$7.99
    • US$27.99
    • US$10.99
    • US$26.99
    • US$29.99
    • US$9.99
    • US$9.99
    • US$10.99
    • US$16.99
    • US$13.73
    • US$19.94
    • US$43.99
    • US$85.99
    • US$1.40