Arduino DLNA Server
Icon.h
Go to the documentation of this file.
1 
2 #pragma once
3 #include "icons/icon.h"
4 
5 namespace tiny_dlna {
10 class Icon {
11  public:
12  const char* mime = "image/png";
13  int width = 512;
14  int height = 512;
15  int depth = 8;
16  const char* icon_url = "/icon.png";
17  uint8_t* icon_data = (uint8_t*) icon_png;
19 };
20 
21 }
Information about the icon.
Definition: Icon.h:10
const char * icon_url
Definition: Icon.h:16
int width
Definition: Icon.h:13
int icon_size
Definition: Icon.h:18
int height
Definition: Icon.h:14
const char * mime
Definition: Icon.h:12
uint8_t * icon_data
Definition: Icon.h:17
int depth
Definition: Icon.h:15
const unsigned char icon_png[]
Definition: icon.h:1
unsigned int icon_png_len
Definition: icon.h:838
Definition: Allocator.h:6