Newer
Older
Tardis / include / NetworkHandler.h
/*
SPDX-License-Identifier: MIT
Copyright (c) 2024 Casey Reeves and the LuminaSensum contributors
*/

#ifndef NETWORKHANDLER_H
#define NETWORKHANDLER_H

#include "EthernetInterface.h"

void network_connect(void);
void network_disconnect(void);
void network_init(void);
bool network_is_connected(void);
NetworkInterface *network_interface(void);

#endif