Bonjour. J'ai un souci d'afficheur. Comme d'habitude lors de panne, je charge un module minimaliste pour localiser la panne, mais là je sèche. L'ecran s'allume et reste allumé. Le blinking ne fonctionne pas. Rien ne s'affiche. J'ai changé d'afficheur, mais c'est pareil.
#include "LiquidCrystal_I2C.h"
LiquidCrystal_I2C LCD(0x27,16,2); // définit le type d'ecran lcd 16 x 2
void setup() {
LCD.init(); // initialisation de l'afficheur
LCD.backlight();
LCD.setCursor(1, 0);
LCD.print("HELLO");
LCD.setCursor(8, 1);
LCD.print("WORLD");
}
void loop() {
LCD.noDisplay();
delay(1000);
LCD.display();
delay(1000);
}
J'ai donc redémarré l'IDE depuis la console
2025-05-15T06:42:41.217Z monitor-service INFO started monitor to /dev/ttyACM0 using serial
2025-05-15T06:42:41.228Z monitor-service INFO No port configuration changes have been detected. No need to send configure commands to the running monitor serial:/dev/ttyACM0.
Warning: /usr/lib32/libvulkan_intel_hasvk.so: mauvaise classe ELF : ELFCLASS32
Warning: loader_icd_scan: Failed loading library associated with ICD JSON /usr/lib32/libvulkan_intel_hasvk.so. Ignoring this JSON
Warning: /usr/lib32/libvulkan_radeon.so: mauvaise classe ELF : ELFCLASS32
Warning: loader_icd_scan: Failed loading library associated with ICD JSON /usr/lib32/libvulkan_radeon.so. Ignoring this JSON
Warning: /usr/lib32/libvulkan_intel.so: mauvaise classe ELF : ELFCLASS32
Warning: loader_icd_scan: Failed loading library associated with ICD JSON /usr/lib32/libvulkan_intel.so. Ignoring this JSON
Warning: ../mesa-25.0.4/src/amd/vulkan/radv_physical_device.c:2010: Device '/dev/dri/renderD128' is not using the AMDGPU kernel driver: Argument invalide (VK_ERROR_INCOMPATIBLE_DRIVER)
Error: Loader Message: setup_loader_term_phys_devs: Failed to detect any valid GPUs in the current config
Warning: vkEnumeratePhysicalDevices
at GatherPhysicalDevices (../../third_party/dawn/src/dawn/native/vulkan/VulkanInfo.cpp:131)
at Initialize (../../third_party/dawn/src/dawn/native/vulkan/BackendVk.cpp:353)
at Create (../../third_party/dawn/src/dawn/native/vulkan/BackendVk.cpp:266)
at operator() (../../third_party/dawn/src/dawn/native/vulkan/BackendVk.cpp:521)
Pourtant le port incriminé fonctionne car je change assez facilement le programme.
C'est messages sont-ils normaux ou pas ? si quelqu'un pouvait m'aider.... Merci.
