Commander-API  V2.0.2
Simple Command Parser
Loading...
Searching...
No Matches
commandResponseWiFiClient Class Reference

Arduino Hardware serial response subclass. More...

#include <Commander-IO.hpp>

Inheritance diagram for commandResponseWiFiClient:
[legend]
Collaboration diagram for commandResponseWiFiClient:
[legend]

Public Member Functions

void select (WiFiClient *client_p)
 
int available () override
 
int read () override
 
int peek () override
 
size_t readBytes (uint8_t *buff, uint32_t size) override
 
void flush () override
 
size_t write (uint8_t b) override
 
size_t print (char c) override
 
size_t print (char *str) override
 
size_t print (const char *str) override
 
size_t print (int8_t b) override
 
size_t print (uint8_t b) override
 
size_t print (int16_t b) override
 
size_t print (uint16_t b) override
 
size_t print (int32_t b) override
 
size_t print (uint32_t b) override
 
size_t print (float f) override
 
size_t print (double f) override
 
size_t println () override
 
size_t println (char c) override
 
size_t println (char *str) override
 
size_t println (const char *str) override
 
size_t println (int8_t b) override
 
size_t println (uint8_t b) override
 
size_t println (int16_t b) override
 
size_t println (uint16_t b) override
 
size_t println (int32_t b) override
 
size_t println (uint32_t b) override
 
size_t println (float f) override
 
size_t println (double f) override
 
int printf (const char *fmt,...) override
 
virtual int available ()
 
virtual int read ()
 
virtual int peek ()
 
virtual size_t readBytes (uint8_t *buff, uint32_t size)
 
virtual void flush ()
 
virtual size_t write (uint8_t b)
 
virtual size_t print (char c)
 
virtual size_t print (char *str)
 
virtual size_t print (const char *str)
 
virtual size_t print (int8_t b)
 
virtual size_t print (uint8_t b)
 
virtual size_t print (int16_t b)
 
virtual size_t print (uint16_t b)
 
virtual size_t print (int32_t b)
 
virtual size_t print (uint32_t b)
 
virtual size_t print (float f)
 
virtual size_t print (double f)
 
virtual size_t println ()
 
virtual size_t println (char c)
 
virtual size_t println (char *str)
 
virtual size_t println (const char *str)
 
virtual size_t println (int8_t b)
 
virtual size_t println (uint8_t b)
 
virtual size_t println (int16_t b)
 
virtual size_t println (uint16_t b)
 
virtual size_t println (int32_t b)
 
virtual size_t println (uint32_t b)
 
virtual size_t println (float f)
 
virtual size_t println (double f)
 
virtual int printf (const char *fmt,...)
 

Detailed Description

Arduino Hardware serial response subclass.

This subclass is overrides the communication functions in the commandResponse class to make it work with a HardwareSerial like class in Arduino environment.

Definition at line 289 of file Commander-IO.hpp.

Member Function Documentation

◆ available()

int commandResponseWiFiClient::available ( )
overridevirtual

Reimplemented from commandResponse.

Definition at line 779 of file Commander-IO.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ flush()

void commandResponseWiFiClient::flush ( )
overridevirtual

Reimplemented from commandResponse.

Definition at line 807 of file Commander-IO.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ peek()

int commandResponseWiFiClient::peek ( )
overridevirtual

Reimplemented from commandResponse.

Definition at line 793 of file Commander-IO.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ print() [1/11]

size_t commandResponseWiFiClient::print ( char *  str)
overridevirtual

Reimplemented from commandResponse.

Definition at line 829 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ print() [2/11]

size_t commandResponseWiFiClient::print ( char  c)
overridevirtual

Reimplemented from commandResponse.

Definition at line 822 of file Commander-IO.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ print() [3/11]

size_t commandResponseWiFiClient::print ( const char *  str)
overridevirtual

Reimplemented from commandResponse.

Definition at line 836 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ print() [4/11]

size_t commandResponseWiFiClient::print ( double  f)
overridevirtual

Reimplemented from commandResponse.

Definition at line 892 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ print() [5/11]

size_t commandResponseWiFiClient::print ( float  f)
overridevirtual

Reimplemented from commandResponse.

Definition at line 885 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ print() [6/11]

size_t commandResponseWiFiClient::print ( int16_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 857 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ print() [7/11]

size_t commandResponseWiFiClient::print ( int32_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 871 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ print() [8/11]

size_t commandResponseWiFiClient::print ( int8_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 843 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ print() [9/11]

size_t commandResponseWiFiClient::print ( uint16_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 864 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ print() [10/11]

size_t commandResponseWiFiClient::print ( uint32_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 878 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ print() [11/11]

size_t commandResponseWiFiClient::print ( uint8_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 850 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ printf()

int commandResponseWiFiClient::printf ( const char *  fmt,
  ... 
)
overridevirtual

Reimplemented from commandResponse.

Definition at line 985 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ println() [1/12]

size_t commandResponseWiFiClient::println ( )
overridevirtual

Reimplemented from commandResponse.

Definition at line 901 of file Commander-IO.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ println() [2/12]

size_t commandResponseWiFiClient::println ( char *  str)
overridevirtual

Reimplemented from commandResponse.

Definition at line 915 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ println() [3/12]

size_t commandResponseWiFiClient::println ( char  c)
overridevirtual

Reimplemented from commandResponse.

Definition at line 908 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ println() [4/12]

size_t commandResponseWiFiClient::println ( const char *  str)
overridevirtual

Reimplemented from commandResponse.

Definition at line 922 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ println() [5/12]

size_t commandResponseWiFiClient::println ( double  f)
overridevirtual

Reimplemented from commandResponse.

Definition at line 978 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ println() [6/12]

size_t commandResponseWiFiClient::println ( float  f)
overridevirtual

Reimplemented from commandResponse.

Definition at line 971 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ println() [7/12]

size_t commandResponseWiFiClient::println ( int16_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 943 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ println() [8/12]

size_t commandResponseWiFiClient::println ( int32_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 957 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ println() [9/12]

size_t commandResponseWiFiClient::println ( int8_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 929 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ println() [10/12]

size_t commandResponseWiFiClient::println ( uint16_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 950 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ println() [11/12]

size_t commandResponseWiFiClient::println ( uint32_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 964 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ println() [12/12]

size_t commandResponseWiFiClient::println ( uint8_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 936 of file Commander-IO.cpp.

Here is the call graph for this function:

◆ read()

int commandResponseWiFiClient::read ( )
overridevirtual

Reimplemented from commandResponse.

Definition at line 786 of file Commander-IO.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ readBytes()

size_t commandResponseWiFiClient::readBytes ( uint8_t *  buff,
uint32_t  size 
)
overridevirtual

Reimplemented from commandResponse.

Definition at line 800 of file Commander-IO.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ select()

void commandResponseWiFiClient::select ( WiFiClient *  client_p)

Definition at line 773 of file Commander-IO.cpp.

Here is the caller graph for this function:

◆ write()

size_t commandResponseWiFiClient::write ( uint8_t  b)
overridevirtual

Reimplemented from commandResponse.

Definition at line 813 of file Commander-IO.cpp.

Here is the call graph for this function:
Here is the caller graph for this function: