-
Notifications
You must be signed in to change notification settings - Fork 1
/
HumidityImg.cpp
20 lines (17 loc) · 1.11 KB
/
HumidityImg.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Image credit
// Icon made by Freepik (http://www.freepik.com) from www.flaticon.com is licensed under CC BY 3.0
// Link: http://www.flaticon.com/free-icon/water-weather-symbol-of-rain-drops-and-sea-waves_54124
#include "HumidityImg.h"
const PROGMEM uint8_t imageData[] = { 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x60,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x60,0x70,0x70,0x00,0x00,0x00,0x00,0x00,0x70,0x70,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x0c,0x0e,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x0e,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x70,0xc0,0x80,0x00,0x00,0x00,0x80,0x80,0x40,0x38,0x70,0xc0,0x80,0x00,0x00,0x00,0x00,0x80,0xc0,0x70,0x38,0x60,0x80,0x80,0x00,0x00,0x00,0x80,0xc0,0x60,0x18,0x08,0x08,0x08,0x08,0x09,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x09,0x09,0x08,0x08,0x08,0x08,0x08,0x08,0x08,0x09,0x09,0x09,0x08,0x08,0x08,0x08 };
uint8_t HumidityImg::GetWidth()
{
return 32;
}
uint8_t HumidityImg::GetHeight()
{
return 32;
}
ResourceStreamer HumidityImg::GetStream()
{
return ResourceStreamer(imageData, sizeof(imageData));
}