pfodParser  3.55.0
The pfodParser library is handles commands sent from the Android pfodApp, pfodApp supports WiFi, BLE, Bluetooth and SMS connections
pfodInsertDwg.h
Go to the documentation of this file.
1 #ifndef pfodInsertDwg_h
2 #define pfodInsertDwg_h
3 /*
4  * (c)2014-2017 Forward Computing and Control Pty. Ltd.
5  * NSW Australia, www.forward.com.au
6  * This code is not warranted to be fit for any purpose. You may only use it at your own risk.
7  * This code may be freely used for both private and commercial use
8  * Provide this copyright is maintained.
9  */
10 #include <stdint.h>
11 #include <Arduino.h>
12 #include "pfodDwgsBase.h"
13 
14 class pfodInsertDwg : public pfodDwgsBase {
15  public:
17  pfodInsertDwg &loadCmd(char _loadCmd);
18  pfodInsertDwg &loadCmd(const char* _loadCmdStr);
19  pfodInsertDwg &offset(float _colOffset, float _rowOffset); // default 0,0
20 // pfodInsertDwg &size(float _width, float _height); // default
21  void init(Print *out, struct VALUES* _values);
22  void send(char _startChar = '|');
23 };
24 #endif // pfodInsertDwg_h
Print * out
Definition: pfodDwgsBase.h:58
pfodInsertDwg & offset(float _colOffset, float _rowOffset)
pfodInsertDwg & loadCmd(char _loadCmd)
pfodInsertDwg & loadCmd(const char *_loadCmdStr)
void init(Print *out, struct VALUES *_values)
void send(char _startChar='|')