Jurica Resetar / Mbed OS acn52832_LANC_BLE

Dependencies:   aconno_LANC aconno_bsp aconno_SEGGER_RTT

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers aconno_i2s.h Source File

aconno_i2s.h

00001     /*
00002      * Made by Jurica Resetar @ aconno
00003      * jurica_resetar@yahoo.com
00004      * More info @ aconno.de
00005      *
00006      * All rights reserved
00007      *
00008      */
00009  
00010 #ifndef ACONNO_I2S_H
00011 #define ACONNO_I2S_H
00012  
00013 #include "mbed.h"
00014 
00015 class aconno_i2s{
00016     public:
00017         aconno_i2s();
00018         void init(uint8_t dataOutPin, uint8_t LrckPin, uint8_t SckPin, uint16_t bufferSize_B, uint8_t *dataPointer);
00019         void sendData();
00020     private:
00021 };
00022  
00023 #endif