
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
@hangtime/motherboard
Advanced tools
A Web Bluetooth API for the Griptonite Motherboard + Beastmaker used by climbers to improve finger strength https://griptonite.io/motherboard/
The objective of this project is to create a client that can establish connections with various Force-Sensing Hangboards/Plates used by climbers for strength measurement. Examples of such hangboards include the Moterboard, Climbro, SmartBoard, Entralpi or Tindeq Progressor
git clone https://github.com/Stevie-Ray/motherboard
cd motherboard
npm install
$ npm install @hangtime/motherboard
Simply importing the utilities you need from @hangtime/motherboard
<button id="motherboard" type="button">Connect Motherboard</button>
import { Motherboard, connect, disconnect, read, write, notify } from "@hangtime/motherboard"
const motherboardButton = document.querySelector("#motherboard")
motherboardButton.addEventListener("click", () => {
connect(Motherboard, async () => {
// Listen for notifications
notify((data) => {
console.log(data)
})
// read battery + device info
await read(Motherboard, "battery", "level")
await read(Motherboard, "device", "manufacturer")
await read(Motherboard, "device", "hardware")
await read(Motherboard, "device", "firmware")
// Calibrate?
await write(Motherboard, "uart", "tx", "C", 5000)
// Read stream?
await write(Motherboard, "unknown", "01", "1", 2500)
await write(Motherboard, "unknown", "02", "0", 2500)
await write(Motherboard, "uart", "tx", "S30", 5000)
// Read stream (2x)?
await write(Motherboard, "unknown", "01", "0", 2500)
await write(Motherboard, "unknown", "02", "1", 2500)
await write(Motherboard, "uart", "tx", "S30", 5000)
// disconnect from device after we are done
disconnect(Motherboard)
})
})
MIT © Stevie-Ray Hartog
FAQs
A Web Bluetooth API for the Griptonite Motherboard + Beastmaker used by climbers to improve finger strength https://griptonite.io/motherboard/
We found that @hangtime/motherboard 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.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.