Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
keiser-echip-webusb
Advanced tools
This library handles communication with the EChip USB reader using WebUSB.
Required Hardware: USB to 1-Wire/iButton Adapter (DS9490)
Required Drivers: 1-Wire/iButton Drivers for Windows
Install with NPM: npm install keiser-echip-utilities
Import module using preferred module loading technique and construct a new EChipReaderWatcher
class.
import EChipReaderWatcher from 'keiser-echip-utilities'
const echipReaderWatcher = new EChipReaderWatcher()
The EChipReaderWatcher
handles permissions and USB connection events. On first load, the browser will not have provided a grant to the site to access the USB device, so the echipReaderWatcher.start()
method must be called by an event that originates from a user action. This may only be required once on the first visit to the site, or it may be required each time the site is loaded based on browser vendors preferred implementation.
connectButton.addEventListener('click', async () => {
try {
await echipReaderWatcher.start()
} catch (error) {
console.error(error.message)
}
})
Once the echipReaderWatcher.start()
method has been called the class will prompt the browser for permission and begin watching for devices matching the EChip Readers device signature. To be alerted when a device is found, pass a function to the echipReaderWatcher.onConnect()
method.
echipReaderWatcher.onConnect((echipReader) => {
console.log('EChip Reader Connected 😄')
})
The echipReaderWatcher.onConnect()
will pass in an EChipReader
object which is the object bound to the physical device connected. This library is capable of handling multiple EChip Reader devices simultaneously, so the onConnect()
method has potential for returning multiple EChipReader
devices over the course of the application's life.
echipReader.onDisconnect(() => {
console.log('EChip Reader Disconnected 😞')
})
The EChipReader
object has a onDisconnect()
method which will alert when the EChip Reader has been disconnected for some reason. Once an EChipReader
object has been disconnected, it is disposed and cannot be used again. The next time the device is connected, a new EChipReader
object will be returned.
echipReader.onEChipDetect(async (echip) => {
console.log('EChip Connected: ' + echip.id)
console.log(await echip.getData())
})
The EChipReader
object also has an onEChipDetect()
method which will alert when a valid EChip has been placed into the reader. The event passes in an EChip
object that can be used to interact with the EChip data directly. Just like the echipReaderWatcher.onConnect()
method, the EChipReader.onEChipDetect()
method can be called multiple times for multiple EChips all being handled concurrently. Once an EChip is disconnected, the EChip
object is disposed and cannot be reused.
Full example usage:
import EChipReaderWatcher from 'keiser-echip-utilities'
document.addEventListener('DOMContentLoaded', event => {
const echipReaderWatcher = new EChipReaderWatcher()
const connectButton = document.querySelector('#connect') as HTMLInputElement
if (connectButton) {
connectButton.addEventListener('click', async () => {
try {
await echipReaderWatcher.start()
} catch (error) {
console.error(error.message)
}
})
}
echipReaderWatcher.onConnect((echipReader) => {
console.log('EChip Reader Connected 😄')
echipReader.onEChipDetect((echip) => {
console.log('EChip Connected: ' + echip.id)
console.log(await echip.getData())
})
echipReader.onDisconnect(() => {
console.log('EChip Reader Disconnected 😞')
})
})
})
Coming Soon
Maxim Integrated 1-Wire USB Android notes
Maxim Integrated 1-Wire USB Android project
Copyright Keiser Corporation under the MIT license.
FAQs
Keiser Air eChip WebUSB Library
The npm package keiser-echip-webusb receives a total of 1 weekly downloads. As such, keiser-echip-webusb popularity was classified as not popular.
We found that keiser-echip-webusb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.