Voila depuis hier j'essaye désespérément d'afficher ne ,serait-ce qu'une lettre sur :
cet écran
avec ce Backpack
Les produit étant vendu ensemble et déjà assemblé, je n'ai rien câblé !
Mais, il m'est impossible d'afficher quelque chose sur cet ensemble, j'ai pourtant bien branché l'écran et écrit un code serial basique :
#include <SoftwareSerial.h>
#define rxPin 10
#define txPin 11
int analogValue;
// set up a new serial port
SoftwareSerial mySerial = SoftwareSerial(rxPin, txPin);
void setup() {
// define pin modes for tx, rx:
pinMode(rxPin, INPUT);
pinMode(txPin, OUTPUT);
// set the data rate for the SoftwareSerial port
mySerial.begin(115200);
}
void loop() {
mySerial.print("Hello");
}
Pour info l'écran s’allume bien et est tout bleu en permanence, j'ai essayer de tourner le réglage du contraste (potentiomètre sur la carte aucun changement).
Quelqu'un pourrait-il m'éclairer ? ou a déjà rencontré ce problème ?
Merci par avance.
Oui, j'ai bien testé le code qu'ils fournissent. (Et la librairie)
La seule réaction que j'obtient est une variation grandissante de la luminosité de l'écran, puis plus rien!
l'écran reste "au bleu fixe".
J'ai bien recâble les fils pour le RX/TX.
Vous avez vérifié le potentiomètre à tourner pour le contraste? (En haut à gauche)
Avez vous soudé vous même le backpack? Si non un jumper à vérifier en haut à droite
Solder Jumper
There is a solder jumper on the backpack that determines which display is used. When the solder jumper is closed, code for the 128x64 display will run. If the jumper is open, code for the 160x128 display will run. This jumper is soldered during production according to which LCD the backpack is being attached. However, if you wish to use the backpack with your own LCD, you may need to handle this jumper accordingly.
Dans la doc du backpack ils disent
Power Requirements
Voltages of up to 7V may be used to power the backpack, however, care should be taken to reduce the backlight duty cycle in such cases to reduce the chance of overloading the voltage regulator on the backpack. To avoid complication with the voltage regulator, it’s best to power the backpack at 6V. You can also get away with powering the backpack from another 5V source. Keep in mind that anything below 5V will result in issues with the backlight and/or the display. If you are powering the backpack from a computer USB port or a microcontroller, make sure the output is actually 5V and not something like 4.5V.
Supply voltage: 6V–7V DC
Current draw: 220mA (backlight at 100%)
Serial input: 0-5V
Adjustable baud rate (115200 default) with 8 data bits, no parity, 1 stop bit
Draw text, circles, lines boxes
Turn on or off individual pixels
Potentiometer controlled contrast adjustment
Backlight control
2.02x1.11" (51x28mm)
Hmmm en effet cette information m'avait échappée !
Je vais trouver un moyen pour obtenir du 6 ou 7 V, pas très pratique, mal pensé ça !
Hélas mon écran n'a pas prix de bonne résolution pour 2018 et refuse toujours de m'afficher quoi que ce soit !
Il y a toute fois du progrès avec l'alim de 9v, le réglage contraste fait bien varier la luminosité de l'écran a présent !
En revanche pas d'avancé coté affichage, je commence à désespérer je ne vois pas d'ou peut venir le problème !