mirror of
https://github.com/HASwitchPlate/openHASP.git
synced 2025-04-21 05:47:21 +00:00
22 lines
534 B
C
22 lines
534 B
C
/* MIT License - Copyright (c) 2020 Francis Van Roie
|
|
For full license information read the LICENSE file in the project folder */
|
|
|
|
#ifndef HASP_NETWORK_H
|
|
#define HASP_NETWORK_H
|
|
|
|
/* ===== Default Event Processors ===== */
|
|
void networkSetup();
|
|
void IRAM_ATTR networkLoop(void);
|
|
void networkEvery5Seconds(void);
|
|
void networkEverySecond(void);
|
|
void networkStart(void);
|
|
void networkStop(void);
|
|
|
|
/* ===== Special Event Processors ===== */
|
|
|
|
/* ===== Getter and Setter Functions ===== */
|
|
|
|
/* ===== Read/Write Configuration ===== */
|
|
|
|
|
|
#endif |