Library for PAT9125 on L476RG platform

Fork of pat9125_mbed by PixArt Imaging

pat9125_i2c.h

Committer:
pixus_mbed
Date:
2017-10-20
Revision:
0:3459848530ee

File content as of revision 0:3459848530ee:

#ifndef PAT9125_I2C_H
#define PAT9125_I2C_H
#include "stdint.h"
#include "mbed.h"

class pat9125_i2c : public I2C
{
    public:           
        pat9125_i2c(PinName sda, PinName scl);
        static pat9125_i2c * reset() ;
};

#endif