
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
gy-mcu90640-node
Advanced tools
Handles serial communication with the MLX90540 based GY-MCU90640 infrared camera module.
Handles serial communication with the MLX90540 based GY-MCU90640 infrared camera module. Only ever tested on Raspberry Pi.
Take a look at this article for some background information about the module in question, wiring etc.:
https://habr.com/en/post/441050/
Usage:
// Connect to the camera on /sev/serial0 (on Raspberry Pi)
const camera = require('gy-mcu90640-node')('/dev/serial0', {
// Callback for reading the current emissivity
onEmissivity: em => {
console.log('Emissivity:', em)
},
// Callback for handling the temperature data
onTemperatures: (temperatures, ambient) => {
console.log('Temperatures: ', temperatures)
console.log('Ambient: ', ambient)
}
})
// Set target emissivity.
setTimeout(camera.emissivity, 0, 0.95)
// Request a single frame after 100s (the module needs a bit of time to react)
setTimeout(camera.query, 100)
// Request emissivity
setTimeout(camera.emissivity, 1000)
// Switch to contonuous reading
setTimeout(camera.automatic, 2000)
// Terminate automatic reading by requesting a single frame
setTimeout(camera.query, 5000)
// Terminate the process
setTimeout(() => process.exit(0), 12000)
FAQs
Handles serial communication with the MLX90540 based GY-MCU90640 infrared camera module.
The npm package gy-mcu90640-node receives a total of 2 weekly downloads. As such, gy-mcu90640-node popularity was classified as not popular.
We found that gy-mcu90640-node 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.