mongoose/examples/device-dashboard/net.h

28 lines
504 B
C
Raw Normal View History

2023-05-26 22:48:20 +08:00
// Copyright (c) 2023 Cesanta Software Limited
// All rights reserved
#pragma once
#include "mongoose.h"
#if !defined(HTTP_URL)
#define HTTP_URL "http://0.0.0.0:8000"
#endif
#if !defined(HTTPS_URL)
2023-07-25 20:07:28 +08:00
#define HTTPS_URL "https://0.0.0.0:8443"
2023-05-26 22:48:20 +08:00
#endif
2023-05-29 00:06:47 +08:00
#define MAX_DEVICE_NAME 40
2023-06-19 16:43:55 +08:00
#define MAX_EVENTS_NO 400
#define MAX_EVENT_TEXT_SIZE 10
#define EVENTS_PER_PAGE 20
2023-05-29 00:06:47 +08:00
// Event log entry
struct ui_event {
2023-06-19 16:43:55 +08:00
uint8_t type, prio;
unsigned long timestamp;
char text[10];
};
2023-05-26 22:48:20 +08:00
void web_init(struct mg_mgr *mgr);