Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
resistor-calculator [2022/11/14 18:41] – created steve.wang | resistor-calculator [2024/07/15 20:32] (current) – steve.wang | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Resistor Calculator ====== | ====== Resistor Calculator ====== | ||
+ | I created this because during a term, I had to work with electronics and I always felt resistors were troublesome. I always lost track of what resistors I had and I felt it was troublesome calculating the amount of resistance each resistor had. Originally I created a local version which used websocket to save and read a record of the resistors I had. To make it work fully here on the web, I changed the code to not use websockets and allow for uploading and downloading resistor data. I also marked out and added buttons to some features which only had keybinds before. Originally the interface was inspired by the VIM editor but recently when I was porting my code to work fully on the web, I added mouse support. For touch devices touch the part of the interface to interact with it. To remove a color, press backspace or press the color boxes. | ||
+ | |||
+ | |||
+ | < | ||
+ | < | ||
+ | html { | ||
+ | background-color: | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | #keypad { | ||
+ | display: grid; | ||
+ | grid-template-columns: | ||
+ | gap: 10px; | ||
+ | background-color: | ||
+ | padding: 10px; | ||
+ | } | ||
+ | |||
+ | #keypad > div { | ||
+ | text-align: center; | ||
+ | padding: 20px; | ||
+ | font-size: 20px; | ||
+ | transition: opacity 0.2s, color 0.2s; | ||
+ | vertical-align: | ||
+ | } | ||
+ | /* CSS animations: https:// | ||
+ | /* https:// | ||
+ | |||
+ | #keypad > div:hover { | ||
+ | opacity: 0.8; | ||
+ | cursor: pointer; | ||
+ | } | ||
+ | |||
+ | #container { | ||
+ | display: flex; | ||
+ | justify-content: | ||
+ | gap: 0.1px; /* Add space between the divs */ | ||
+ | width: 30%; | ||
+ | position: relative; | ||
+ | left: 35%; | ||
+ | color: black | ||
+ | } | ||
+ | |||
+ | .chosenKeys: | ||
+ | opacity: 0.5; | ||
+ | cursor: pointer; | ||
+ | } | ||
+ | |||
+ | .chosenKeys { | ||
+ | width: 50px; | ||
+ | height: 50px; | ||
+ | display: flex; | ||
+ | align-items: | ||
+ | justify-content: | ||
+ | background-color: | ||
+ | border: 4px ridge pink; | ||
+ | } | ||
+ | |||
+ | .square { | ||
+ | text-align: center; | ||
+ | position: absolute; | ||
+ | height: 5%; | ||
+ | width: 10%; | ||
+ | background-color: | ||
+ | color: white; | ||
+ | padding: 1%; | ||
+ | font-size: 25px; | ||
+ | top: 1% | ||
+ | } | ||
+ | |||
+ | #first { | ||
+ | left: 43%; | ||
+ | } | ||
+ | |||
+ | #second { | ||
+ | left: 48%; | ||
+ | } | ||
+ | |||
+ | #third { | ||
+ | left: 53%; | ||
+ | } | ||
+ | |||
+ | #fourth { | ||
+ | left: 58%; | ||
+ | } | ||
+ | |||
+ | #fifth { | ||
+ | display: none; | ||
+ | left: 60%; | ||
+ | } | ||
+ | |||
+ | #black { | ||
+ | background-color: | ||
+ | color: white; | ||
+ | } | ||
+ | |||
+ | #brown { | ||
+ | background-color: | ||
+ | color: white; | ||
+ | } | ||
+ | |||
+ | #red { | ||
+ | background-color: | ||
+ | color: white; | ||
+ | } | ||
+ | |||
+ | #orange { | ||
+ | background-color: | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | #yellow { | ||
+ | background-color: | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | #green { | ||
+ | background-color: | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | #blue { | ||
+ | background-color: | ||
+ | color: white; | ||
+ | } | ||
+ | |||
+ | #violet { | ||
+ | background-color: | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | #grey { | ||
+ | background-color: | ||
+ | color: white; | ||
+ | } | ||
+ | |||
+ | #white { | ||
+ | background-color: | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | #gold { | ||
+ | background-color: | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | #silver { | ||
+ | background-color: | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | / | ||
+ | |||
+ | h1 { | ||
+ | text-align: center; | ||
+ | } | ||
+ | #results { | ||
+ | text-align: center; | ||
+ | font-size: 250%; | ||
+ | font-weight: | ||
+ | } | ||
+ | |||
+ | #mode { | ||
+ | background-color: | ||
+ | color: white; | ||
+ | } | ||
+ | |||
+ | #upload{ | ||
+ | background-color: | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | #download{ | ||
+ | background-color: | ||
+ | color: white; | ||
+ | } | ||
+ | |||
+ | #find{ | ||
+ | background-color: | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | #save{ | ||
+ | background-color: | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | #calc{ | ||
+ | background-color: | ||
+ | color: black; | ||
+ | } | ||
+ | |||
+ | .highlight{ | ||
+ | color: navy; | ||
+ | } | ||
+ | </ | ||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | <body | ||
+ | style=" | ||
+ | user-select: | ||
+ | -webkit-user-select: | ||
+ | -khtml-user-select: | ||
+ | -moz-user-select: | ||
+ | -ms-user-select: | ||
+ | " | ||
+ | > | ||
+ | <!-- https:// | ||
+ | <div id=' | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | </ | ||
+ | <br /><br /> | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | <div id=" | ||
+ | </ | ||
+ | < | ||
+ | <div id=' | ||
+ | <input type=" | ||
+ | < | ||
+ | // helped by chatgpt, w3schools, mdn | ||
+ | |||
+ | function blobToString(e) { | ||
+ | var reader = new FileReader(); | ||
+ | reader.onload = function () { | ||
+ | displayMessage(reader.result); | ||
+ | // document.body.innerHTML+='< | ||
+ | }; | ||
+ | reader.readAsText(e.data); | ||
+ | } | ||
+ | //How to decode blob: https:// | ||
+ | |||
+ | let combination = []; | ||
+ | let allInputs = document.getElementsByClassName(" | ||
+ | allInputs = htmlCollectionToArray(allInputs); | ||
+ | allInputs = allInputs.splice(0, | ||
+ | let focusedElement = undefined; | ||
+ | |||
+ | let keyShortCuts = [ | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | addColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | addColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | addColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | addColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | addColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | addColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | addColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | addColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | addColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | addColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | addColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | addColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function (e) { | ||
+ | removeColors(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | // | ||
+ | getColorsAndCalc(); | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: "?", | ||
+ | func: function () { | ||
+ | find(); | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | changeMode(); | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | upToDateSave = false; | ||
+ | document.getElementById(" | ||
+ | }, | ||
+ | }, | ||
+ | { | ||
+ | action: " | ||
+ | key: " | ||
+ | func: function () { | ||
+ | handleFileDownload(); | ||
+ | }, | ||
+ | }, | ||
+ | ]; | ||
+ | |||
+ | function changeMode() { | ||
+ | if (allInputs.length == 4) { | ||
+ | allInputs = document.getElementsByClassName(" | ||
+ | allInputs = htmlCollectionToArray(allInputs); | ||
+ | allInputs[4].style.display = " | ||
+ | } else if (allInputs.length == 5) { | ||
+ | allInputs[4].style.display = " | ||
+ | allInputs = allInputs.splice(0, | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function find() { | ||
+ | let finding = prompt( | ||
+ | "Type the amount of resistance you are looking for in your resistor" | ||
+ | ); | ||
+ | results.innerHTML = findResistorMatch(JSON.parse(finding)); | ||
+ | } | ||
+ | |||
+ | function getColorsAndCalc() { | ||
+ | for (let i = 0; i < allInputs.length; | ||
+ | if ( | ||
+ | allInputs[i].style.backgroundColor == " | ||
+ | allInputs[i].style.backgroundColor == "" | ||
+ | ) { | ||
+ | return " | ||
+ | } | ||
+ | } | ||
+ | let colors = []; | ||
+ | for (let i = 0; i < allInputs.length; | ||
+ | colors.push(allInputs[i].style.backgroundColor); | ||
+ | allInputs[i].style.backgroundColor = " | ||
+ | } | ||
+ | console.log(" | ||
+ | results.innerText = JSON.stringify( | ||
+ | calculateResistorAmount(reverseArray(colors)) | ||
+ | ); | ||
+ | } | ||
+ | |||
+ | function addColors(toAdd) { | ||
+ | for (let i = 0; i < allInputs.length; | ||
+ | if ( | ||
+ | allInputs[i].style.backgroundColor == " | ||
+ | allInputs[i].style.backgroundColor == "" | ||
+ | ) { | ||
+ | allInputs[i].style.backgroundColor = toAdd; | ||
+ | return true; | ||
+ | } | ||
+ | if (i == allInputs.length - 1) { | ||
+ | allInputs[i].style.backgroundColor = toAdd; | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function removeColors(toAdd, | ||
+ | console.log(e) | ||
+ | for (let i = 0; i < allInputs.length; | ||
+ | if ( | ||
+ | allInputs[allInputs.length - 1 - i].style.backgroundColor != | ||
+ | " | ||
+ | allInputs[allInputs.length - 1 - i].style.backgroundColor != "" | ||
+ | ) { | ||
+ | allInputs[allInputs.length - 1 - i].style.backgroundColor = ""; | ||
+ | return true; | ||
+ | } | ||
+ | } | ||
+ | allInputs[allInputs.length - 1].style.backgroundColor = ""; | ||
+ | } | ||
+ | |||
+ | function runAction(action, | ||
+ | keyShortCuts.forEach((x) => { | ||
+ | if (action == x.action) { | ||
+ | console.log(" | ||
+ | x.func(e); | ||
+ | if (e !== null) { | ||
+ | animateClick(e) | ||
+ | } | ||
+ | } | ||
+ | }); | ||
+ | } | ||
+ | |||
+ | function changingShortcuts(id, | ||
+ | keyShortCuts.forEach((x) => { | ||
+ | if (x.action == id) { | ||
+ | x.key = k; | ||
+ | } | ||
+ | }); | ||
+ | } | ||
+ | |||
+ | function checkColorSpelling(array) { | ||
+ | let mistakes = []; | ||
+ | array.forEach((x, | ||
+ | let found = false; | ||
+ | resistorColors.forEach((b) => { | ||
+ | if (b.color == x) { | ||
+ | found = true; | ||
+ | } | ||
+ | }); | ||
+ | if (found != true) { | ||
+ | mistakes.push(i); | ||
+ | } | ||
+ | }); | ||
+ | return mistakes; | ||
+ | } | ||
+ | |||
+ | function addResistor(colorArray) { | ||
+ | let found = false; | ||
+ | if (checkColorSpelling(colorArray).length > 0) { | ||
+ | return "Check spelling for " + checkColorSpelling(colorArray) + " ."; | ||
+ | } | ||
+ | existingResistors.forEach((x) => { | ||
+ | if (checkArrayContents(x.colors, | ||
+ | found = true; | ||
+ | x.amount += 1; | ||
+ | } | ||
+ | }); | ||
+ | if (found == false) { | ||
+ | existingResistors.push({ colors: colorArray, amount: 1 }); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function checkArrayContents(array1, | ||
+ | if (array1.length != array2.length) { | ||
+ | return false; | ||
+ | } | ||
+ | let returnStatement = true; | ||
+ | array1.forEach((x, | ||
+ | if (x != array2[i]) { | ||
+ | returnStatement = false; | ||
+ | } | ||
+ | }); | ||
+ | return returnStatement; | ||
+ | } | ||
+ | |||
+ | function saveColors(e) { | ||
+ | animateClick(document.getElementById(' | ||
+ | upToDateSave = false; | ||
+ | for (let i = 0; i < allInputs.length; | ||
+ | if ( | ||
+ | allInputs[i].style.backgroundColor == " | ||
+ | allInputs[i].style.backgroundColor == "" | ||
+ | ) { | ||
+ | return " | ||
+ | } | ||
+ | } | ||
+ | let colors = []; | ||
+ | for (let i = 0; i < allInputs.length; | ||
+ | colors.push(allInputs[i].style.backgroundColor); | ||
+ | allInputs[i].style.backgroundColor = " | ||
+ | } | ||
+ | console.log(" | ||
+ | addResistor(colors); | ||
+ | console.log(" | ||
+ | results.innerText = " | ||
+ | } | ||
+ | |||
+ | document.addEventListener(" | ||
+ | if (e.ctrlKey == true && e.key == " | ||
+ | saveColors(e); | ||
+ | } else { | ||
+ | keyShortCuts.forEach((x) => { | ||
+ | if (x.key === e.key) { | ||
+ | runAction(x.action, | ||
+ | } | ||
+ | }); | ||
+ | } | ||
+ | }); | ||
+ | |||
+ | let keypadItems = keypad.children | ||
+ | for (let i = 0; i < keypadItems.length; | ||
+ | keypadItems[i].alt = getComputedStyle(keypadItems[i]).color | ||
+ | } | ||
+ | |||
+ | function animateClick (target) { | ||
+ | console.log(' | ||
+ | target.style.color = ' | ||
+ | setTimeout(() => { | ||
+ | target.style.color = target.alt | ||
+ | }, 100) | ||
+ | } | ||
+ | |||
+ | document | ||
+ | .getElementById(" | ||
+ | .addEventListener(" | ||
+ | removeColors(" | ||
+ | }); | ||
+ | |||
+ | document.getElementById(" | ||
+ | console.log(" | ||
+ | if (e.target.id === " | ||
+ | saveColors(e); | ||
+ | } | ||
+ | else { | ||
+ | keyShortCuts.forEach((x) => { | ||
+ | if (x.action == e.target.id) { | ||
+ | runAction(x.action, | ||
+ | } | ||
+ | }); | ||
+ | } | ||
+ | }); | ||
+ | |||
+ | function htmlCollectionToArray(collection) { | ||
+ | let returnArray = []; | ||
+ | for (let i = 0; i < collection.length; | ||
+ | returnArray.push(collection[i]); | ||
+ | } | ||
+ | return returnArray; | ||
+ | } | ||
+ | |||
+ | function convertColorToNumber(input) { | ||
+ | let output; | ||
+ | if (typeof input == " | ||
+ | resistorColors.forEach((x) => { | ||
+ | if (x.color == input) { | ||
+ | output = x.n; | ||
+ | } | ||
+ | }); | ||
+ | } else if (typeof input == " | ||
+ | output = input.map((b) => { | ||
+ | let found; | ||
+ | resistorColors.forEach((x) => { | ||
+ | if (x.color == b) { | ||
+ | found = x.n; | ||
+ | } | ||
+ | }); | ||
+ | return found; | ||
+ | }); | ||
+ | } | ||
+ | return output; | ||
+ | } | ||
+ | |||
+ | let resistorColors = [ | ||
+ | { color: " | ||
+ | { color: " | ||
+ | { color: " | ||
+ | { color: " | ||
+ | { color: " | ||
+ | { color: " | ||
+ | { color: " | ||
+ | { color: " | ||
+ | { color: " | ||
+ | { color: " | ||
+ | { color: " | ||
+ | { color: " | ||
+ | ]; | ||
+ | |||
+ | function convertColorToMultiplier(input) { | ||
+ | let output; | ||
+ | if (typeof input == " | ||
+ | resistorColors.forEach((x) => { | ||
+ | if (x.color == input) { | ||
+ | output = x.multiply; | ||
+ | } | ||
+ | }); | ||
+ | } else if (typeof input == " | ||
+ | output = input.map((b) => { | ||
+ | let found; | ||
+ | resistorColors.forEach((x) => { | ||
+ | if (x.color == b) { | ||
+ | found = x.multiply; | ||
+ | } | ||
+ | }); | ||
+ | return found; | ||
+ | }); | ||
+ | } | ||
+ | return output; | ||
+ | } | ||
+ | |||
+ | //Reverse and array. Make an array backwords.: | ||
+ | function reverseArray(inputArray) { | ||
+ | let returnArray = []; | ||
+ | for (let i = 0; i < inputArray.length; | ||
+ | returnArray.push(inputArray[inputArray.length - 1 - i]); | ||
+ | } | ||
+ | return returnArray; | ||
+ | } | ||
+ | |||
+ | function convertColorToTolerance(input) { | ||
+ | let output; | ||
+ | if (typeof input == " | ||
+ | resistorColors.forEach((x) => { | ||
+ | if (x.color == input) { | ||
+ | output = x.tolerance; | ||
+ | } | ||
+ | }); | ||
+ | } else if (typeof input == " | ||
+ | output = input.map((b) => { | ||
+ | let found; | ||
+ | resistorColors.forEach((x) => { | ||
+ | if (x.color == b) { | ||
+ | found = x.tolerance; | ||
+ | } | ||
+ | }); | ||
+ | return found; | ||
+ | }); | ||
+ | } | ||
+ | return output; | ||
+ | } | ||
+ | |||
+ | function calculateResistorAmount(multiplier, | ||
+ | // | ||
+ | let resistor = {}; | ||
+ | if (typeof multiplier == " | ||
+ | return new Error( | ||
+ | "Not a valid array. Object.colors and object.tolerance needs to be defined. An array needs the colors on the resistor. The first color should be the tolerance." | ||
+ | ); | ||
+ | } else if (typeof multiplier == " | ||
+ | return new Error( | ||
+ | "There should be at least for arguments and four colors on the resistor" | ||
+ | ); | ||
+ | } | ||
+ | if (typeof multiplier == " | ||
+ | resistor.tolerance = multiplier[0]; | ||
+ | resistor.multiplier = multiplier[1]; | ||
+ | resistor.ins = multiplier.slice(2); | ||
+ | } else if (typeof multiplier == " | ||
+ | resistor.tolerance = multiplier; | ||
+ | resistor.multiplier = tolerance; | ||
+ | resistor.ins = [in1, in2]; | ||
+ | } | ||
+ | if (in3 != undefined) { | ||
+ | resistor.ins.push(in3); | ||
+ | } | ||
+ | let numbers = convertColorToNumber(resistor.ins); | ||
+ | let nMultiplier = convertColorToMultiplier(resistor.multiplier); | ||
+ | let nTolerance = convertColorToTolerance(resistor.tolerance); | ||
+ | let total = 0; | ||
+ | numbers.forEach((x) => { | ||
+ | total += x; | ||
+ | }); | ||
+ | total *= nMultiplier; | ||
+ | return { resistance: total, tolerance: nTolerance }; | ||
+ | } | ||
+ | |||
+ | let existingResistors = []; | ||
+ | |||
+ | function findResistorMatch(amount) { | ||
+ | if (existingResistors.length === 0) { | ||
+ | alert( | ||
+ | "No recorded resistors. Press x to upload a json file of the records of existing resistors" | ||
+ | ); | ||
+ | return false; | ||
+ | } | ||
+ | let resistorsToNum = existingResistors.map((x) => { | ||
+ | return calculateResistorAmount(reverseArray(x.colors)).resistance; | ||
+ | }); | ||
+ | let found; | ||
+ | resistorsToNum.forEach((x, | ||
+ | if (x == amount) { | ||
+ | found = i; | ||
+ | } | ||
+ | }); | ||
+ | if (found != undefined) { | ||
+ | return ( | ||
+ | "Found resistor which has <strong class=' | ||
+ | calculateResistorAmount( | ||
+ | reverseArray(existingResistors[found].colors) | ||
+ | ).resistance + | ||
+ | " ohms </ | ||
+ | calculateResistorAmount( | ||
+ | reverseArray(existingResistors[found].colors) | ||
+ | ).tolerance + | ||
+ | "% </ | ||
+ | existingResistors[found].colors + | ||
+ | " </ | ||
+ | existingResistors[found].amount + | ||
+ | ". </ | ||
+ | ); | ||
+ | } else { | ||
+ | let closest; | ||
+ | let foundIndex; | ||
+ | existingResistors.forEach((x, | ||
+ | if ( | ||
+ | calculateResistorAmount(reverseArray(x.colors)).resistance == | ||
+ | closestNumber(amount, | ||
+ | ) { | ||
+ | closest = x; | ||
+ | foundIndex = i; | ||
+ | } | ||
+ | }); | ||
+ | return ( | ||
+ | "No exact matching resistor has been found.\n The closest resistor that has required amount of resistance is the resistor has <strong class=' | ||
+ | calculateResistorAmount(reverseArray(closest.colors)).resistance + | ||
+ | " ohms </ | ||
+ | calculateResistorAmount(reverseArray(closest.colors)).tolerance + | ||
+ | "% </ | ||
+ | closest.colors + | ||
+ | "</ | ||
+ | closest.amount + | ||
+ | "</ | ||
+ | ); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | function closestNumber(inputNumber, | ||
+ | let numberBefore = { | ||
+ | number: undefined, | ||
+ | difference: Infinity, | ||
+ | }; | ||
+ | let currentdifference; | ||
+ | checkArray.forEach((x) => { | ||
+ | currentdifference = inputNumber - x; | ||
+ | if (currentdifference < 0) { | ||
+ | // | ||
+ | currentdifference -= currentdifference * 2; | ||
+ | } | ||
+ | // | ||
+ | if (currentdifference < numberBefore.difference) { | ||
+ | numberBefore.number = x; | ||
+ | numberBefore.difference = currentdifference; | ||
+ | } | ||
+ | }); | ||
+ | return numberBefore; | ||
+ | } | ||
+ | |||
+ | function handleFileUpload(e) { | ||
+ | let file = e.target.files[0]; | ||
+ | let reader = new FileReader(); | ||
+ | reader.onload = function (e) { | ||
+ | existingResistors.push(JSON.parse(e.target.result)); | ||
+ | existingResistors = existingResistors.flat(); | ||
+ | }; | ||
+ | reader.readAsText(file); | ||
+ | } | ||
+ | |||
+ | let upToDateSave = false; | ||
+ | |||
+ | // Function to handle file download | ||
+ | function handleFileDownload() { | ||
+ | upToDateSave = true; | ||
+ | const data = existingResistors; | ||
+ | const json = JSON.stringify(data, | ||
+ | const blob = new Blob([json], | ||
+ | const url = URL.createObjectURL(blob); | ||
+ | const a = document.createElement(" | ||
+ | a.href = url; | ||
+ | a.download = " | ||
+ | document.body.appendChild(a); | ||
+ | a.click(); | ||
+ | document.body.removeChild(a); | ||
+ | URL.revokeObjectURL(url); | ||
+ | } | ||
+ | |||
+ | document.addEventListener(" | ||
+ | if (upToDateSave === false) { | ||
+ | e.preventDefault(); | ||
+ | // | ||
+ | e.returnValue = | ||
+ | "You may have entered data not saved to your local system. Save to not lose data. Data not saved to your system will be lost"; | ||
+ | return "You may have entered data not saved to your local system. Save to not lose data. Data not saved to your system will be lost"; | ||
+ | } | ||
+ | }); | ||
+ | |||
+ | window.addEventListener(" | ||
+ | if (upToDateSave === false) { | ||
+ | e.preventDefault(); | ||
+ | // | ||
+ | e.returnValue = | ||
+ | "You may have entered data not saved to your local system. Save to not lose data. Data not saved to your system will be lost"; | ||
+ | return "You may have entered data not saved to your local system. Save to not lose data. Data not saved to your system will be lost"; | ||
+ | } | ||
+ | }); | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | </ | ||