ESP_IOT v2.5
IOT ESP Coding
M5Atom_HDriverModuleClass Class Reference

An concrete class. More...

#include <M5Atom_HDriverModuleClass.h>

Inheritance diagram for M5Atom_HDriverModuleClass:
Inheritance graph
Collaboration diagram for M5Atom_HDriverModuleClass:
Collaboration graph

Public Member Functions

 M5Atom_HDriverModuleClass (char *config)
 constructor More...
 
 ~M5Atom_HDriverModuleClass ()
 destructor More...
 
void start_M5AtomClassType ()
 starts the PTStepper More...
 
void setup_M5AtomClassType ()
 setup the PTStepper More...
 
void stop_M5AtomClassType ()
 stops motor More...
 
void loop_M5AtomClassType ()
 setup the PTStepper More...
 
void messageSetVal_M5AtomClassType (char *setName, char *valValue, boolean deviceNameSpecified)
 ATOM specific. More...
 
void messageSend_M5AtomClassType (char *sendValue, boolean deviceNameSpecified)
 
void buttonA_ShortPress_M5AtomClassType ()
 
void buttonA_LongPress_M5AtomClassType ()
 long press on buttonA (top button) More...
 
char * currentStatusURL_M5AtomClassType ()
 
char * currentStatusJSON_M5AtomClassType ()
 
boolean isPTFeeder_M5AtomClassType ()
 
- Public Member Functions inherited from M5AtomClassType
 M5AtomClassType (char *config)
 
 ~M5AtomClassType ()
 destructor More...
 
char * classIdentity ()
 
virtual void start_M5AtomClassType ()=0
 
virtual void setup_M5AtomClassType ()=0
 setup the PTStepper More...
 
virtual void stop_M5AtomClassType ()=0
 stop the motor More...
 
virtual void loop_M5AtomClassType ()=0
 loop the PTStepper (so timer can run) More...
 
virtual void messageSetVal_M5AtomClassType (char *setName, char *valValue, boolean deviceNameSpecified)=0
 these are from the ATOM More...
 
virtual void messageSend_M5AtomClassType (char *sendValue, boolean deviceNameSpecified)=0
 
virtual void buttonA_ShortPress_M5AtomClassType ()=0
 
virtual void buttonA_LongPress_M5AtomClassType ()=0
 long press on buttonA (top button) More...
 
virtual void buttonA_LongLongPress_M5AtomClassType ()
 11.25.25 Add LONG LONG press for the AP mode More...
 
virtual char * currentStatusURL_M5AtomClassType ()=0
 
virtual char * currentStatusJSON_M5AtomClassType ()=0
 
virtual boolean isPTFeeder_M5AtomClassType ()
 

Detailed Description

An concrete class.

Definition at line 16 of file M5Atom_HDriverModuleClass.h.

Constructor & Destructor Documentation

◆ M5Atom_HDriverModuleClass()

M5Atom_HDriverModuleClass::M5Atom_HDriverModuleClass ( char *  config)

constructor

8.30.25 LA Warm, Zuma Beach - end scene of Planet of Apes

Currently the HDriver only processes the BUZZER .. so the setup works..

Definition at line 16 of file M5Atom_HDriverModuleClass.cpp.

◆ ~M5Atom_HDriverModuleClass()

M5Atom_HDriverModuleClass::~M5Atom_HDriverModuleClass ( )

destructor

Member Function Documentation

◆ buttonA_LongPress_M5AtomClassType()

void M5Atom_HDriverModuleClass::buttonA_LongPress_M5AtomClassType ( )
virtual

long press on buttonA (top button)

Implements M5AtomClassType.

Definition at line 103 of file M5Atom_HDriverModuleClass.cpp.

Here is the call graph for this function:

◆ buttonA_ShortPress_M5AtomClassType()

void M5Atom_HDriverModuleClass::buttonA_ShortPress_M5AtomClassType ( )
virtual

BUTTON PROCESSING abstraction short press on buttonA (top button)

feed

send this as a DOCFOLLOW message

feed always (done after the code below..)

Implements M5AtomClassType.

Definition at line 89 of file M5Atom_HDriverModuleClass.cpp.

Here is the call graph for this function:

◆ currentStatusJSON_M5AtomClassType()

char * M5Atom_HDriverModuleClass::currentStatusJSON_M5AtomClassType ( )
virtual

returns a string in in JSON so: status&battery=84'&buzzon='off' } .. etc starts with "&"*

returns a string in in JSON so: status&battery=84'&buzzon='off' } .. etc (SINGLE QUOTES)

Implements M5AtomClassType.

Definition at line 127 of file M5Atom_HDriverModuleClass.cpp.

◆ currentStatusURL_M5AtomClassType()

char * M5Atom_HDriverModuleClass::currentStatusURL_M5AtomClassType ( )
virtual

returns a string in in URL so: status&battery=84'&buzzon='off' } .. etc starts with "&"*

8.4.25 add k=HD (HDriver)

Implements M5AtomClassType.

Definition at line 119 of file M5Atom_HDriverModuleClass.cpp.

◆ isPTFeeder_M5AtomClassType()

boolean M5Atom_HDriverModuleClass::isPTFeeder_M5AtomClassType ( )
virtual

6.6.24 D-Day 81 years return true or false if this should be a PTFeeder or PTClicker default 'false' to PTClicker. The Bluetooth will use this

Reimplemented from M5AtomClassType.

Definition at line 25 of file M5Atom_HDriverModuleClass.cpp.

◆ loop_M5AtomClassType()

void M5Atom_HDriverModuleClass::loop_M5AtomClassType ( )
virtual

setup the PTStepper

Implements M5AtomClassType.

Definition at line 61 of file M5Atom_HDriverModuleClass.cpp.

◆ messageSend_M5AtomClassType()

void M5Atom_HDriverModuleClass::messageSend_M5AtomClassType ( char *  sendValue,
boolean  deviceNameSpecified 
)
virtual

12.28.23, 8.28.23 Adding a way for others to get informed on messages that arrive for the send -

Implements M5AtomClassType.

Definition at line 81 of file M5Atom_HDriverModuleClass.cpp.

◆ messageSetVal_M5AtomClassType()

void M5Atom_HDriverModuleClass::messageSetVal_M5AtomClassType ( char *  setName,
char *  valValue,
boolean  deviceNameSpecified 
)
virtual

ATOM specific.

these are from the ATOM 8.28.23 Adding a way for others to get informed on messages that arrive for the set,val 12.27.23 support setName == "HDriver" 1.10.24 if deviceNameSpecified then this matches this device, otherwise for all. It's up to the receiver to decide if it has to be specified

Implements M5AtomClassType.

Definition at line 74 of file M5Atom_HDriverModuleClass.cpp.

◆ setup_M5AtomClassType()

void M5Atom_HDriverModuleClass::setup_M5AtomClassType ( )
virtual

setup the PTStepper

NOTE: this could probably be done by ESP_IOT.ino .. but for now keep here (and in the other ATOM code..)

Implements M5AtomClassType.

Definition at line 41 of file M5Atom_HDriverModuleClass.cpp.

Here is the call graph for this function:

◆ start_M5AtomClassType()

void M5Atom_HDriverModuleClass::start_M5AtomClassType ( )
virtual

starts the PTStepper

Data members of class Generic config info .. specific the the sensor type

Implements M5AtomClassType.

Definition at line 36 of file M5Atom_HDriverModuleClass.cpp.

◆ stop_M5AtomClassType()

void M5Atom_HDriverModuleClass::stop_M5AtomClassType ( )
virtual

stops motor

Implements M5AtomClassType.

Definition at line 55 of file M5Atom_HDriverModuleClass.cpp.


The documentation for this class was generated from the following files: