pfodParser  3.61.0
The pfodParser library is handles commands sent from the Android pfodApp, pfodApp supports WiFi, BLE, Bluetooth and SMS connections
pfodStream.h
Go to the documentation of this file.
1 #ifndef pfodStream_h
2 #define pfodStream_h
3 
4 #include <Arduino.h>
5 // This include handles the rename of Stream for MBED compiles
6 // it is included for pfodParser, pfodBLEBufferedStream, pfod_Base, pfodSMS_SIM900 and pfodWaitForUtils
7 #if defined(ARDUINO_ARDUINO_NANO33BLE) || defined(ARDUINO_ARCH_SAMD) || defined(ARDUINO_ARCH_MBED_RP2040)
8 #include <Stream.h>
9 #elif defined( __MBED__ ) || defined( MBED_H )
10 #include <WStream.h>
11 #define Stream WStream
12 #else
13 #include <Stream.h>
14 #endif
15 
16 #endif //pfodStream_h