test cli

Dependencies:   mbed-os-example-mbed5-lorawan

Fork of Projet_de_bachelor_code by LoRa_Bachelor

qsd.h

Committer:
Ranyd04
Date:
2018-06-13
Revision:
24:f00666a1be3a
Parent:
23:3dfaed332d89

File content as of revision 24:f00666a1be3a:


#ifndef QSD_H
#define QSD_H

#include "mbed.h"

class QSD{
    public:
        SPI *spi;
        DigitalOut *cs;
        QSD();
        
        int read(void);   
           
};

#endif