BayEOSArduino Library
MB7364.h
1 
12 #ifndef MB7364_H
13 #define MB7364_H
14 #include <SoftwareSerial.h>
15 
16 class MB7364 : public SoftwareSerial{
17 
18 
19 public:
20  /*
21  Creates a new class. First argument is the RX pin number.
22  */
23  MB7364(uint8_t, uint8_t);
24  /*
25  Opens a serial connection
26  */
27  void begin();
28  /*
29  Read range value of sensor
30  */
31  int range();
32 };
33 
34 #endif
Definition: MB7364.h:16