Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Stream events from DualShock 4 controllers. Works for Bluetooth & USB.
Supports:
Compared to the DS3 the DS4 dropped most pressure sensitive buttons. Only L2 and R2 are still also analog. PEW PEW! I guess someone had to make room for the trackpad...
TODO:
$ npm install -g ds4
$ ds4-dump
Will dump decoded events to stdout.
var ds4 = require('ds4');
var through = require('through');
// controller is a node-hid HID object representing the controller
hid.pipe(through(ds4.parseDS4HIDData)).pipe(process.stdout);
Example output frame:
{ leftAnalogX: 128,
leftAnalogY: 128,
rightAnalogX: 127,
rightAnalogY: 127,
l2Analog: 0,
r2Analog: 0,
dPadUp: false,
dPadRight: false,
dPadDown: false,
dPadLeft: false,
cross: false,
circle: false,
square: false,
triangle: false,
l1: false,
l2: false,
r1: false,
r2: false,
l3: false,
r3: false,
share: false,
options: false,
trackPadButton: false,
psButton: false,
motionY: 0,
motionX: 1,
motionZ: -2,
orientationRoll: -145,
orientationYaw: 8155,
orientationPitch: 2089,
trackPadTouch0Id: 4,
trackPadTouch0Active: false,
trackPadTouch0X: 1513,
trackPadTouch0Y: 40,
trackPadTouch1Id: 0,
trackPadTouch1Active: false,
trackPadTouch1X: 0,
trackPadTouch1Y: 0,
timestamp: 36,
batteryLevel: 0 }
Emitting data:
var ds4 = require('ds4');
ds4.emit(hid, {
rumbleRight: 0, // 0 ... 255
rumbleLeft: 0, // 0 ... 255
r: 0, // 0 ... 255
g: 0, // 0 ... 255
b: 0, // 0 ... 255
flashOn: 0, // 0 ... 255 (flash on duration)
flashOff: 0 // 0 ... 255 (flash off duration)
});
As long as this is pre 1.0 I'll rename property names.
¯\_(ツ)_/¯
MIT
FAQs
Stream events from DualShock 4 controllers
The npm package ds4 receives a total of 0 weekly downloads. As such, ds4 popularity was classified as not popular.
We found that ds4 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.