mirror of
https://github.com/0015/ThatProject.git
synced 2026-01-12 17:27:43 +03:00
17 lines
257 B
C
17 lines
257 B
C
#ifndef MyFirmware_H_
|
|
#define MyFirmware_H_
|
|
#include <Arduino.h>
|
|
|
|
struct firmware_t {
|
|
String company;
|
|
int build_num;
|
|
String build_date;
|
|
String server_file_path;
|
|
int file_size;
|
|
String md5_checksum;
|
|
};
|
|
|
|
typedef struct firmware_t Firmware;
|
|
|
|
#endif
|