pfodParser  5.0.1
The pfodParser library is handles commands sent from the Android pfodApp, pfodApp supports WiFi, BLE, Bluetooth and SMS connections
ESP_PicoW_pfodAppServer.h
Go to the documentation of this file.
1 #ifndef ESP_PICOW_PFODAPP_SERVER_H
2 #define ESP_PICOW_PFODAPP_SERVER_H
3 #include <Arduino.h>
4 #include <pfodParser.h>
5 
6 /*
7  ESP_PicoW_pfodAppServer.h
8  * (c)2025 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 generated code may be freely used for both private and commercial use
12  * provided this copyright is maintained.
13  */
14 #if defined(ESP8266) || defined(ESP32) || defined(ARDUINO_ARCH_RP2040) && !defined(__MBED__)
15 
16 typedef void (*handle_mainMenuFnPtr)(pfodParser &parser);
17 void start_pfodAppServer(const char* version, handle_mainMenuFnPtr fnPtr=NULL );
18 void handle_pfodAppServer();
19 void pfodApp_setVersion(const char* version);
20 void closeConnection_pfodAppServer(Stream *io);
21 Print& getRawDataWriter();
22 #endif
23 #endif