Basic example how to use DrawPixel with STM32F746

Dependencies:   BSP_DISCO_F746NG LCD_DISCO_F746NG TS_DISCO_F746NG mbed

Output/Output.h

Committer:
billycorgan123
Date:
2018-02-21
Revision:
1:8a54b7de2617

File content as of revision 1:8a54b7de2617:

#ifndef OUTPUT_H
#define OUTPUT_H

#include "mbed.h"
class Output
{

public:
    bool stato;
    bool draw_image(const unsigned long* indirizzo_acceso, const unsigned long* indirizzo_spento, bool stato, int off_X, int off_Y);
    bool trigger;
private:

};
#endif