Beiträge von Onedune

    Oui bien sur.



    First excuse my bad English ! ;)


    Hi everyone, i finally do my DIY Lightberry and it works but i have issue with leds. They are too slow when the image change.



    Externer Inhalt www.youtube.com
    Inhalte von externen Seiten werden ohne Ihre Zustimmung nicht automatisch geladen und angezeigt.
    Durch die Aktivierung der externen Inhalte erklären Sie sich damit einverstanden, dass personenbezogene Daten an Drittplattformen übermittelt werden. Mehr Informationen dazu haben wir in unserer Datenschutzerklärung zur Verfügung gestellt.


    How to reduce this reaction time? Will the smoothing setting solve my problem?
    Here are the current settings:


    Code
    // SMOOTHING CONFIG
            "smoothing" :
            {
                "type"            : "linear",
                "time_ms"         : 200,
                "updateFrequency" : 20.0000,
                "updateDelay"     : 0


    Thanks ! :)

    Bonjour à tous, après quelques jours de galères j'ai enfin réussi à faire fonctionner ce merveilleux système !! :omg:




    Cependant j'ai encore besoin d'un petit coup de main pour le réglage du smoothing. Sur la vidéo on peut voir clairement que les couleurs des leds ne collent pas directement à la couleur de l'écran, il y a un délai entre les changement de couleurs.

    Externer Inhalt www.youtube.com
    Inhalte von externen Seiten werden ohne Ihre Zustimmung nicht automatisch geladen und angezeigt.
    Durch die Aktivierung der externen Inhalte erklären Sie sich damit einverstanden, dass personenbezogene Daten an Drittplattformen übermittelt werden. Mehr Informationen dazu haben wir in unserer Datenschutzerklärung zur Verfügung gestellt.


    Comment faire pour réduire ce délai? Est ce que le réglage du smoothing va résoudre mon problème?
    Voici les réglages actuels :


    Code
    // SMOOTHING CONFIG
            "smoothing" :
            {
                "type"            : "linear",
                "time_ms"         : 200,
                "updateFrequency" : 20.0000,
                "updateDelay"     : 0



    D'avance merci !! ;)

    I think its a problem with the prefix.


    const char prefix[] = {0x41, 0x64, 0x61, 0x00, 0xD4, 0x81}; // Prefix at the start of the transmission
    char buffer[sizeof(prefix)]; // Temporary buffer for receiving the prefix data


    // to calculate your prefix, the first 4 bytes will never change: const char prefix[] = {0x41, 0x64, 0x61, 0x00, this never changes.
    // the next byte is equal to the number of LED - 1 --> (232-1)=231. 231 transformed in HEX. 231 in hex is E7 (use google)
    // the last byte is equal to the XOR value of the calculated value just above and 0x55 (byte just calculated (E7) XORED with 0x55) = B2 use this link http://xor.pw/? and in input 1 put 55 and in input 2 put your HEX value.
    :thumbup: