-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
19 lines (19 loc) · 1.05 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animated GIF to Arduino converter for PxMatrix</title>
</head>
<body style="text-align: center; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;">
<h1>Animated GIF to Arduino converter for PxMatrix</h1>
<div>This page converts animated GIF files to Arduino byte-arrays in RGB565 format as used by the great PxMatrix library in the <a href="https://github.com/2dom/PxMatrix/tree/master/examples/black_lives" target="_blank">examples</a>.<br/>
Make sure the entered urls can be remote loaded.<br/>
The conversion is done completely in the browser, no entered data is transferred to the server. See the <a href="https://github.com/toblum/gif2carray">repo</a> for implementation details.<br/>
It's just a quick'n'dirty implementation, but it may help you too.
</div>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>