-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathirdb.html
More file actions
118 lines (103 loc) · 5.6 KB
/
Copy pathirdb.html
File metadata and controls
118 lines (103 loc) · 5.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#000000">
<title>GhostESP IRDB - Infrared Remote Database</title>
<meta name="description" content="Search the GhostESP IRDB for infrared remote files by brand, model, or device type. Download IR files or upload them directly to supported GhostESP devices.">
<meta name="keywords" content="GhostESP, ESP32, IR database, infrared database, remote control, IR files">
<meta name="robots" content="index, follow">
<meta property="og:type" content="website">
<meta property="og:title" content="GhostESP IRDB - Infrared Remote Database">
<meta property="og:description" content="Search the GhostESP IRDB for infrared remote files by brand, model, or device type, then download or upload them to supported devices.">
<meta property="og:url" content="https://ghostesp.net/irdb">
<meta property="og:site_name" content="GhostESP">
<meta property="og:image" content="https://ghostesp.net/images/IMG_1178.webp">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="GhostESP IRDB - Infrared Remote Database">
<meta name="twitter:description" content="Search, download, and upload infrared remote files for GhostESP devices.">
<meta name="twitter:image" content="https://ghostesp.net/images/IMG_1178.webp">
<link rel="canonical" href="https://ghostesp.net/irdb">
<link rel="alternate" type="application/rss+xml" title="GhostESP Blog" href="https://ghostesp.net/feed.xml">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/irdb.css">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body>
<a href="#main-content" class="skip-link">Skip to content</a>
<canvas id="dotTerrain"></canvas>
<script src="js/dot-terrain.js"></script>
<nav id="nav"><noscript><a href="/">Home</a> <a href="boards.html">Boards</a> <a href="flasher.html">Flasher</a> <a href="serial.html">Serial Console</a> <a href="marketplace.html">Apps</a> <a href="asset-marketplace.html">Asset Packs</a> <a href="irdb.html">IRDB</a> <a href="blog.html">Blog</a> <a href="https://docs.ghostesp.net">Docs</a></noscript></nav>
<div class="irdb-container">
<header class="irdb-header">
<h1></i> Infrared Remote Database</h1>
<p class="header-description">Search and manage IR files for your GhostESP device</p>
</header>
<main id="main-content" class="irdb-main">
<div class="search-section">
<div class="search-bar">
<input type="text" id="searchInput" placeholder="Search by brand, model, or device type...">
<button id="searchButton" aria-label="Search"><i class="fas fa-search"></i></button>
</div>
<div class="filters">
<select id="deviceTypeFilter" aria-label="Filter by device type">
<option value="">All Device Types</option>
</select>
<select id="brandFilter" aria-label="Filter by brand">
<option value="">All Brands</option>
</select>
<select id="itemsPerPage" aria-label="Results per page">
<option value="10">10 per page</option>
<option value="20" selected>20 per page</option>
<option value="50">50 per page</option>
<option value="100">100 per page</option>
</select>
</div>
<div id="stats" class="stats"></div>
<div class="last-updated"></div>
</div>
<div id="loading" class="loading">
<div class="spinner"></div>
<p>Loading database...</p>
</div>
<div id="results" class="results"></div>
<div id="pagination" class="pagination">
<button id="prevPage" class="page-nav" aria-label="Previous page"><i class="fas fa-chevron-left"></i></button>
<span id="currentPage"></span>
<button id="nextPage" class="page-nav" aria-label="Next page"><i class="fas fa-chevron-right"></i></button>
</div>
</main>
</div>
<div id="serialPopup" class="popup-overlay">
<div class="popup-content">
<i class="fas fa-exclamation-triangle popup-icon"></i>
<h2>Browser Not Compatible</h2>
<p>Web Serial is not supported in this browser. To connect to your GhostESP device, please use:</p>
<ul>
<li><i class="fab fa-chrome"></i> Google Chrome</li>
<li><i class="fab fa-edge"></i> Microsoft Edge</li>
<li><i class="fab fa-opera"></i> Opera</li>
</ul>
<button class="btn close-popup">Got it!</button>
</div>
</div>
<footer class="footer">
<div class="container">
<p>Data from <a href="https://github.com/Lucaslhm/Flipper-IRDB" target="_blank" rel="noopener">Flipper-IRDB</a></p>
<button class="cookie-settings-link" onclick="CookieConsent.showSettings()">Cookie Settings</button>
<a href="privacy.html" class="cookie-settings-link">Privacy Policy</a>
</div>
</footer>
<script src="https://unpkg.com/[email protected]/dist/umd/lucide.min.js" defer></script>
<script src="js/components.js" defer></script>
<script src="js/social-proof.js" defer></script>
<script src="js/main.js" defer></script>
<script src="js/irdb.js" defer></script>
<script src="js/cookie-consent.js" defer></script>
</body>
</html>