Raspberry Pi Camera

Dependents:   qqq_izu_main_test

QQQCAM.h

Committer:
tanahashi
Date:
2020-09-19
Revision:
0:7a6b30b678c7
Child:
1:546f9ce8f4c0

File content as of revision 0:7a6b30b678c7:

#ifndef QQQCAM_H
#define QQQCAM_H

class QQQCAM{
private:
    Serial *_serial;
    char rx_buf[256];
    int index;
    int flag;
    float rate;
    
public:
    QQQCAM(Serial &cam);
    
private:
    void receive();

public:
    float get_rate();
};

#endif