25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- /*
- * struct.h
- *
- * Created on: 07.04.2020
- * Author: agr
- */
-
- #ifndef STRUCT_H_
- #define STRUCT_H_
-
-
- struct config_t
- {
- byte config_set;
- byte use_dhcp;
- byte dhcp_refresh_minutes;
- byte mac[6];
- byte ip[4];
- byte gateway[4];
- byte subnet[4];
- byte dns_server[4];
- unsigned int webserverPort;
- } eeprom_config;
-
-
- #endif /* STRUCT_H_ */
|