Library for PAT9125 on L476RG platform

Fork of pat9125_mbed by PixArt Imaging

pat9125_i2c.h

Committer:
pixus_mbed
Date:
2018-02-01
Revision:
1:4b7c15d9c864
Parent:
0:3459848530ee

File content as of revision 1:4b7c15d9c864:

#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