littleBits | Electronic Building Blocks for the 21st Century
Bluetooth 5: Go Faster, Go Further | Bluetooth Technology Website
800 ft
Micro:bit Educational Foundation | micro:bit
Amazon.com: BBC micro:bit micro-controller with motion detection, compass, LED display and Bluetooth: Computers & Accessories
WebUSB API @GitHub
Access USB Devices on the Web | Google Developers
chrome://device-log/
chrome://usb-internals/
navigator.usb.requestDevice({ filters: [{ vendorId: 0x2341 }] })
.then(device => {
console.log(device.productName); // "Arduino Micro"
console.log(device.manufacturerName); // "Arduino LLC"
})
.catch(error => { console.log(error); });
Chirpers | IoT Robotics
Ron Dagdag's Projects - Hackster.io
chrome.usb - Google Chrome
Use the
chrome.usb
API to interact with connected USB devices. This API provides access to USB operations from within the context of an app. Using this API, apps can function as drivers for hardware devices.
No comments:
Post a Comment