Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
wifi370-js-api
Advanced tools
#wifi370-js-api :bulb: lightweight JavaScript interface for WIFI370 LED-Controller
npm install wifi370-js-api
###Basic Usage
const WIFI370 = require('wifi370-js-api');
const controller = WIFI370('LW12','20.1.0.142',5577);
controller.setOn();
controller.getOn((error, response) => {
});
controller.setOff();
controller.setColor(controller.color.rgb(255, 0, 0));
controller.getColor((error, response) => {
});
controller.setBrightness(controller.color.value());
controller.getBrightness((error, response) => {
});
controller.setHue(controller.color.hue());
controller.getHue((error, response) => {
});
controller.setSaturation(controller.color.saturationv());
controller.getSaturation((error, response) => {
});
###Tests Find more examples in "test" directory.
Enter you hyperion server connection in package.json, and run some tests!
"ledController": {
"host": "20.1.0.142"
}
run a single test from commandline with:
mocha test/wifi370.spec.js -g "setOff should switch off"
Controller | Supported | Type |
---|---|---|
LW12 | [x] | RGB |
LD382 | [x] | RGB |
LD382A | [x] | RGB |
LD686 | [x] | RGBW |
Thanks to Meik Dirkes for reverse engineering the communication for all controller types.
####WIFI370-LED Controller
Link to Amazon (Germany): Link
FAQs
lightweight JavaScript interface for WIFI370 LED-Controller
We found that wifi370-js-api 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.