MakeBlock Drive Updated
Updated library for MakeBlock Ranger
Loading...
Searching...
No Matches
MeWifi.h
Go to the documentation of this file.
1
38#ifndef MeWifi_H
39#define MeWifi_H
40
41#include <stdint.h>
42#include <stdbool.h>
43#include <Arduino.h>
44#include "MeConfig.h"
45#include "MeSerial.h"
46
47#ifdef ME_PORT_DEFINED
48#include "MePort.h"
49#endif /* ME_PORT_DEFINED */
50
56#ifndef ME_PORT_DEFINED
57class MeWifi
58#else /* !ME_PORT_DEFINED */
59class MeWifi : public MeSerial
60#endif /* !ME_PORT_DEFINED */
61{
62public:
63#ifdef ME_PORT_DEFINED
70 MeWifi();
71
78 MeWifi(uint8_t port);
79#else // ME_PORT_DEFINED
90 MeWifi(uint8_t receivePin, uint8_t transmitPin, bool inverse_logic);
91#endif // ME_PORT_DEFINED
92};
93#endif
94
Configuration file of library.
Header for MePort.cpp module.
Header for for MeSerial.cpp module.
Driver for serial.
Definition MeSerial.h:67
Driver for Me wifi device.
Definition MeWifi.h:61
MeWifi()
Definition MeWifi.cpp:49