test cli

Dependencies:   mbed-os-example-mbed5-lorawan

Fork of Projet_de_bachelor_code by LoRa_Bachelor

qsd.h

Committer:
Ranyd04
Date:
2018-06-08
Revision:
23:3dfaed332d89

File content as of revision 23:3dfaed332d89:


#ifndef QSD_H
#define QSD_H

#include "mbed.h"

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

#endif