mirror of
https://github.com/lekrsu/shfw-walkthrough.git
synced 2024-11-24 06:50:18 +01:00
21 lines
566 B
HTML
21 lines
566 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="style.css">
|
|
<title>ADC Offset Calculator</title>
|
|
</head>
|
|
<body>
|
|
<h1>ADC Offset Calculator</h1>
|
|
<label for="inputRadc">Radc (Ohms):</label>
|
|
<input type="number" id="inputRadc" placeholder="Enter Radc value (e.g., 130000)">
|
|
<br>
|
|
<button id="calculateButton">Calculate</button>
|
|
<br>
|
|
<div id="result"></div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|