Basic example how to use DrawPixel with STM32F746

Dependencies:   BSP_DISCO_F746NG LCD_DISCO_F746NG TS_DISCO_F746NG mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Output.h Source File

Output.h

00001 #ifndef OUTPUT_H
00002 #define OUTPUT_H
00003 
00004 #include "mbed.h"
00005 class Output
00006 {
00007 
00008 public:
00009     bool stato;
00010     bool draw_image(const unsigned long* indirizzo_acceso, const unsigned long* indirizzo_spento, bool stato, int off_X, int off_Y);
00011     bool trigger;
00012 private:
00013 
00014 };
00015 #endif