pfodParser  3.61.0
The pfodParser library is handles commands sent from the Android pfodApp, pfodApp supports WiFi, BLE, Bluetooth and SMS connections
pfod_rawOutput.h
Go to the documentation of this file.
1 #ifndef pfod_rawOutput_h
2 #define pfod_rawOutput_h
3 
4 #include <Arduino.h>
5 #include "pfod_Base.h"
6 
7 /*
8  * (c)2014-2017 Forward Computing and Control Pty. Ltd.
9  * NSW Australia, www.forward.com.au
10  * This code is not warranted to be fit for any purpose. You may only use it at your own risk.
11  * This code may be freely used for both private and commercial use
12  * Provide this copyright is maintained.
13  */
14 
15 class pfod_rawOutput : public Print {
16  public:
17  size_t write(uint8_t c);
18  size_t write(const uint8_t *buffer, size_t size);
20  private:
21  pfod_Base* _pfod_Base;
22 
23 };
24 #endif // pfod_rawOutput_h
pfod_Base for Arduino Base class for all pfod_Base_xxxx classes The subclasses pfod_Base_xxx must ove...
Definition: pfod_Base.h:18
size_t write(uint8_t c)
void set_pfod_Base(pfod_Base *arg)
size_t write(const uint8_t *buffer, size_t size)