![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
This is a bit of software that was built for the raspberry pi, but should work on any linux box. It's good at doing things like passing data from bluetooth low energy devices over a websocket connection, or sending data from a connected arduino up to firebase. It consists of two parts - interfaces and transports.
Interfaces allow the pi to collect data from other devices. Currently, the following interfaces are supported:
You should restart the pi after plugging in a new interface, to make sure the OS picks up the changes
Got some data from an interface? Awesome. Transports let you send that data somewhere on the internet.
cd robin-grid
.npm install --production
to pull down and install dependancies.To add or remove interfaces and transports, and configure the behavior of the grid, change the options in config.json. By default, config.json looks like this:
{
"autoUpdate": false,
"runOnBoot": true,
"transports": {
"rbn-websocket": {
"endpoint": "http://robin-grid.omrdev.com"
}
},
"interfaces": {
"rbn-rfid": {}
}
}
Besides the interfaces
and transports
objects, the supported options are:
autoUpdate
- update automatically when a new version is released (default: false
)runOnBoot
- run the grid automatically when the OS boots up using forever
(default: true
)If you want to run the base station and stream the log output, run
sudo DEBUG=base,websocket,ble nodemon grid.js
The DEBUG=namespace1,namespace2,namespace3
parameter is there to help you cut down on the number of logs for easier viewing. Each module has a corresponding namespace - rbn-rfid
logs on the rfid
namespace, rbn-websocket
logs on the socket
namespace, etc.
npm install -g nodemon
*Also, a note on the autoUpdate
option - if you have autoUpdate
set to true and your pi has been rebooted recently, chances are the grid is already running. Do a sudo forever list
to check, and a sudo forever stopall
to kill it before you run the nodemon
command above.
FAQs
Base OS for the Raspberry Pi
The npm package rbn-base receives a total of 0 weekly downloads. As such, rbn-base popularity was classified as not popular.
We found that rbn-base 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.