Sony's LANC camera control protocol project.

Dependencies:   aconno_LANC aconno_bsp aconno_SEGGER_RTT

aconnoI2S/aconno_i2s.h

Committer:
jurica238814
Date:
2018-07-11
Revision:
9:978106d4b181

File content as of revision 9:978106d4b181:

    /*
     * Made by Jurica Resetar @ aconno
     * jurica_resetar@yahoo.com
     * More info @ aconno.de
     *
     * All rights reserved
     *
     */
 
#ifndef ACONNO_I2S_H
#define ACONNO_I2S_H
 
#include "mbed.h"

class aconno_i2s{
    public:
        aconno_i2s();
        void init(uint8_t dataOutPin, uint8_t LrckPin, uint8_t SckPin, uint16_t bufferSize_B, uint8_t *dataPointer);
        void sendData();
    private:
};
 
#endif