Version avec sortie ABCD sur même connecteur

Dependencies:   SDFileSystemDMA mbed

Fork of DmdFullRGB_0_1 by Christophe Girardot

Committer:
Aganyte
Date:
Sat Dec 02 12:27:01 2017 +0000
Revision:
0:d5f38b9d7c7a
Child:
1:353c1902483f
DMD-Clock 128x32 RGB version 0.1

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Aganyte 0:d5f38b9d7c7a 1 /* Librairie de gestion du temps d'un DMD RGB 128x32 pixels
Aganyte 0:d5f38b9d7c7a 2 * - 256 Couleurs mode RGB332 et Monochrome -
Aganyte 0:d5f38b9d7c7a 3 * Novembre 2017 par Christophe Girardot Aka Aganyte
Aganyte 0:d5f38b9d7c7a 4 */
Aganyte 0:d5f38b9d7c7a 5
Aganyte 0:d5f38b9d7c7a 6
Aganyte 0:d5f38b9d7c7a 7 /* Créer l'objet de réception du temps */
Aganyte 0:d5f38b9d7c7a 8 time_t Time;
Aganyte 0:d5f38b9d7c7a 9
Aganyte 0:d5f38b9d7c7a 10 /* HEURE A ENVOYER DANS LA RTC QUAND L'UTILISATEUR DEMARRERA LA CARTE AVEC SON DOIGT SUR LE BOUTON */
Aganyte 0:d5f38b9d7c7a 11 /* IL S'AGIT DU NOMBRE DE SECONDE ECOULE DEPUIS LE 01 JANVIER 1970 A MINUIT UTC */
Aganyte 0:d5f38b9d7c7a 12 /* VOUS TROUVEREZ UN CONVERTISSEUR EN LIGNE A L'ADRESSE => http://www.timestamp.fr/ */
Aganyte 0:d5f38b9d7c7a 13 unsigned long Actual_timestamp = 1511650920;