130 lines
6.2 KiB
HTML
130 lines
6.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
<title>Beer Gravity Monitor</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
|
<style>
|
|
.row-margin-10 { margin-top: 1.0em; }
|
|
</style>
|
|
</head>
|
|
|
|
<body class="py-4">
|
|
|
|
<!-- START MENU -->
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="/index.htm">Beer Gravity Monitor</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/index.htm">Home</a>
|
|
</li>
|
|
<li class="nav-item dropdown">
|
|
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
Configuration
|
|
</a>
|
|
<ul class="dropdown-menu">
|
|
<li><a class="dropdown-item" href="/config.htm">Configuration</a></li>
|
|
<li><a class="dropdown-item" href="/format.htm">Format editor</a></li>
|
|
<li><a class="dropdown-item" href="/test.htm">Test push</a></li>
|
|
<li><a class="dropdown-item" href="/firmware.htm">Upload firmware</a></li>
|
|
</ul>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="/calibration.htm">Calibration</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link active" href="#">About</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="spinner-border text-light" id="spinner" role="status"></div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- START BODY -->
|
|
|
|
<div class="container row-margin-10">
|
|
|
|
<div class="accordion row-margin-10" id="accordion">
|
|
<div class="accordion-item">
|
|
<h2 class="accordion-header" id="headingAbout">
|
|
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseAbout" aria-expanded="true" aria-controls="collapseAbout">
|
|
<b>About</b>
|
|
</button>
|
|
</h2>
|
|
<div id="collapseAbout" class="accordion-collapse collapse show" aria-labelledby="headingAbout" data-bs-parent="#accordion">
|
|
<div class="accordion-body">
|
|
<div class="row h3 col-sm-8">
|
|
Beer Gravity Monitor
|
|
</div>
|
|
<div class="row col-sm-8 mb-3">
|
|
This is a piece of software for the iSpindle hardware and will work in a similar way. No part of this software is copied from the iSpindle project.
|
|
</div>
|
|
<div class="row h3 col-sm-8 mb-3">
|
|
MIT License
|
|
</div>
|
|
<div class="row col-sm-8 mb-3">
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
</div>
|
|
|
|
<div class="row h3 col-sm-8 mb-3">
|
|
Credits to
|
|
</div>
|
|
<div class="row col-sm-8 mb-3">
|
|
This software uses
|
|
the following libraries and without these this software would have been much more difficult to acheive:<br><br>
|
|
<ul>
|
|
<li>https://github.com/jrowberg/i2cdevlib</li>
|
|
<li>https://github.com/codeplea/tinyexpr</li>
|
|
<li>https://github.com/graphitemaster/incbin</li>
|
|
<li>https://github.com/khoih-prog/ESP_DoubleResetDetector</li>
|
|
<li>https://github.com/khoih-prog/ESP_WiFiManager</li>
|
|
<li>https://github.com/thijse/Arduino-Log</li>
|
|
<li>https://github.com/bblanchon/ArduinoJson</li>
|
|
<li>https://github.com/PaulStoffregen/OneWire</li>
|
|
<li>https://github.com/milesburton/Arduino-Temperature-Control-Library</li>
|
|
<li>https://github.com/Rotario</li>
|
|
<li>https://github.com/256dpi/arduino-mqtt</li>
|
|
<li>https://graphjs.com</li>
|
|
<li>https://getbootstrap.com</li>
|
|
<li>https://github.com/lorol/LITTLEFS</li>
|
|
<li>https://github.com/h2zero/NimBLE-Arduino</li>
|
|
<li>https://github.com/spouliot/tilt-sim</li>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- START FOOTER -->
|
|
|
|
<div class="container themed-container bg-primary text-light row-margin-10">(C) Copyright 2021-22 Magnus Persson</div>
|
|
</body>
|
|
</html> |