mirror of
https://github.com/HASwitchPlate/openHASP.git
synced 2025-04-22 06:17:23 +00:00
9 lines
210 B
C
9 lines
210 B
C
#ifndef WIFISPI_H
|
|
#define WIFISPI_H
|
|
|
|
// Glue between STM32_EthernetWebserver and WiFiSpi library
|
|
#include <WiFiSpi.h>
|
|
using EthernetClient = WiFiSpiClient; // Alias
|
|
using EthernetServer = WiFiSpiServer;
|
|
|
|
#endif |