CONTROLA UN DISPLAY DE 7 SEGMENTOS 4 DIGITOS PARA IMPRIMIR UN ARREGLO DE CHARS CON LETRAS Y NUMERO YA SEAN MINUSCULAS O MAYUSCULAS

Revision:
0:1f635f86542a
Child:
1:a467832c08c3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DISPLAY7SEG4DIG.h	Mon May 27 04:29:03 2019 +0000
@@ -0,0 +1,47 @@
+/*
+             INSTITUTO POLITECNICO NACIONAL  
+             
+     ESCUELA SUPERIOR DE INGENIERIA MECANICA Y ELECTRICA
+     
+            -ESTA BIBLIOTECA FUE CREADA POR EL 
+
+                    ING. ARMANDO OLVERA
+
+*/
+
+
+
+
+#ifndef MBED_DISPLAY7SEG4DIG_H
+#define MBED_DISPLAY7SEG4DIG_H
+ 
+#include "mbed.h"
+ 
+ 
+ 
+ 
+ 
+ 
+class seg4digmensaje{
+    public:
+        seg4digmensaje(PinName a,PinName b,PinName c,PinName d,PinName e,PinName f,PinName g,PinName h,PinName q,PinName j,PinName k,PinName z);//constructor
+        //seg4digmensaje(double r, double i);//contructor extendido
+        ~seg4digmensaje(); // destructor
+        void borrar();
+        void mensaje(char mensaje1[20]);
+        void reiniciar();
+     //   double parte_real();
+       // double parte_imag();
+        //void suma(const CComplejo& a, const CComplejo& b);  
+    private:
+          uint8_t nuevomensaje[20];    
+          uint8_t mensaje1[20]; 
+          int i; 
+         
+        int bandera;
+       int u;
+         BusOut  Anodos;
+         BusOut  Catodos;      
+};
+ 
+#endif
\ No newline at end of file