This is a SLIP interface for the STM32F446RE Nucleo Board. It is designed to work specifically with the esp-link software for the ESP8266. The program is an example of a rest command.

Dependencies:   mbed DHT Matrix

STMClientCmd.h

Committer:
ShaneKirkbride
Date:
2016-10-10
Revision:
12:0df73cbe5cbf
Parent:
0:70a6082c1bf7

File content as of revision 12:0df73cbe5cbf:

// MiscSTMlaneous commands

#ifndef _STM_CLIENT_CMD_H_
#define _STM_CLIENT_CMD_H_

#include "STMClient.h"
#include "FP.h"

class STMClientCmd {
  public:
    // Constructor
    STMClientCmd(STMClient* elc);
    // Get the current time in seconds since the epoch, 0 if the time is unknown
    uint32_t GetTime();

  private:
    STMClient* _elc;
};
#endif