Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,15 @@ esp-web-install-button button, .install-btn {
.customize p { margin: 8px 0 0; color: var(--dim); }
.customize code { background: var(--bg-blue-tint); padding: 1px 5px; border-radius: 4px; }
.error-box { border-left: 3px solid var(--border-error); background: var(--bg-error); border-radius: 0 8px 8px 0; padding: 12px 16px; }

/* Firmware config view/download */
.config { border-left: 3px solid var(--blue); background: var(--bg-blue-tint); border-radius: 0 8px 8px 0; padding: 12px 16px; margin-top: 14px; }
.config > summary { cursor: pointer; font-weight: 700; }
.config-hint { margin: 10px 0 8px; color: var(--dim); font-size: .85rem; }
.config-hint code { background: var(--panel); border: 1px solid var(--line); padding: 1px 5px; border-radius: 4px; }
.config-yaml { margin: 0; background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; overflow: auto; max-height: 340px; }
.config-yaml code { font-family: ui-monospace, Consolas, monospace; font-size: .8rem; line-height: 1.5; white-space: pre; color: var(--ink); }
.config-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 12px; }
.config-download { background: var(--blue); color: #fff; border: 0; border-radius: 8px; padding: 9px 18px; font-size: .9rem; font-weight: 700; cursor: pointer; }
.config-download:disabled { opacity: .55; cursor: default; }
.config-github { font-size: .86rem; font-weight: 600; }
52 changes: 52 additions & 0 deletions devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
"stable": {
"Standard": "https://apolloautomation.github.io/MSR-1/firmware/manifest.json"
}
},
"config": {
"stable": {
"Standard": "https://raw.githubusercontent.com/ApolloAutomation/MSR-1/main/Integrations/ESPHome/MSR-1_Factory.yaml"
}
}
},
{
Expand All @@ -30,6 +35,11 @@
"stable": {
"Standard": "https://apolloautomation.github.io/MSR-2/firmware/manifest.json"
}
},
"config": {
"stable": {
"Standard": "https://raw.githubusercontent.com/ApolloAutomation/MSR-2/main/Integrations/ESPHome/MSR-2_Factory.yaml"
}
}
},
{
Expand All @@ -46,6 +56,11 @@
"stable": {
"Standard": "https://apolloautomation.github.io/MTR-1/firmware/manifest.json"
}
},
"config": {
"stable": {
"Standard": "https://raw.githubusercontent.com/ApolloAutomation/MTR-1/main/Integrations/ESPHome/MTR-1_Factory.yaml"
}
}
},
{
Expand All @@ -63,6 +78,12 @@
"WiFi": "https://apolloautomation.github.io/R_PRO-1/firmware-w/manifest.json",
"Ethernet": "https://apolloautomation.github.io/R_PRO-1/firmware-e/manifest.json"
}
},
"config": {
"stable": {
"WiFi": "https://raw.githubusercontent.com/ApolloAutomation/R_PRO-1/main/Integrations/ESPHome/R_PRO-1_W.yaml",
"Ethernet": "https://raw.githubusercontent.com/ApolloAutomation/R_PRO-1/main/Integrations/ESPHome/R_PRO-1_ETH.yaml"
}
}
},
{
Expand All @@ -79,6 +100,11 @@
"stable": {
"Standard": "https://apolloautomation.github.io/AIR-1/firmware/manifest.json"
}
},
"config": {
"stable": {
"Standard": "https://raw.githubusercontent.com/ApolloAutomation/AIR-1/main/Integrations/ESPHome/AIR-1_Factory.yaml"
}
}
},
{
Expand All @@ -95,6 +121,11 @@
"stable": {
"Standard": "https://apolloautomation.github.io/TEMP-1/firmware/manifest.json"
}
},
"config": {
"stable": {
"Standard": "https://raw.githubusercontent.com/ApolloAutomation/TEMP-1/main/Integrations/ESPHome/TEMP-1_R2.yaml"
}
}
},
{
Expand All @@ -111,6 +142,11 @@
"stable": {
"Standard": "https://apolloautomation.github.io/PLT-1/firmware/manifest.json"
}
},
"config": {
"stable": {
"Standard": "https://raw.githubusercontent.com/ApolloAutomation/PLT-1/main/Integrations/ESPHome/PLT-1.yaml"
}
}
},
{
Expand All @@ -128,6 +164,12 @@
"WiFi": "https://apolloautomation.github.io/CAST-1/firmware-w/manifest.json",
"Ethernet": "https://apolloautomation.github.io/CAST-1/firmware-e/manifest.json"
}
},
"config": {
"stable": {
"WiFi": "https://raw.githubusercontent.com/ApolloAutomation/CAST-1/main/Integrations/ESPHome/CAST-1_W.yaml",
"Ethernet": "https://raw.githubusercontent.com/ApolloAutomation/CAST-1/main/Integrations/ESPHome/CAST-1_ETH.yaml"
}
}
},
{
Expand All @@ -144,6 +186,11 @@
"stable": {
"Standard": "https://apolloautomation.github.io/PUMP-1/firmware/manifest.json"
}
},
"config": {
"stable": {
"Standard": "https://raw.githubusercontent.com/ApolloAutomation/PUMP-1/main/Integrations/ESPHome/PUMP-1.yaml"
}
}
},
{
Expand All @@ -160,6 +207,11 @@
"stable": {
"Standard": "https://apolloautomation.github.io/BTN-1/firmware/manifest.json"
}
},
"config": {
"stable": {
"Standard": "https://raw.githubusercontent.com/ApolloAutomation/BTN-1/main/Integrations/ESPHome/BTN-1.yaml"
}
}
}
]
Expand Down
Loading
Loading