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.
eddystone-beacon
Advanced tools
Create an Eddystone Beacon using Node.js
Eddystone-URL beacons can be used with the Physical Web.
See bleno prerequisites.
OS X 10.10 or above, with Bluetooth 4.0 Hardware.
You need to run with sudo
or as root
. See bleno - Running on Linux for more info.
Have an older machine or Raspberry Pi? Add a Bluetooth 4.0 USB Adapter.
See bleno Windows prerequisites.
npm install eddystone-beacon
var eddystoneBeacon = require('eddystone-beacon');
var options = {
name: 'Beacon', // set device name when advertising (Linux only)
txPowerLevel: -22, // override TX Power Level, default value is -21,
tlmCount: 2, // 2 TLM frames
tlmPeriod: 10 // every 10 advertisements
};
Note: an advertising interval of 100ms is used.
var url = 'http://example.com';
eddystoneBeacon.advertiseUrl(url, [options]);
If your encoded URL is too long, try a URL shortener like goo.gl or bit.ly.
var namespaceId = '00010203040506070809';
var instanceId = 'aabbccddeeff';
eddystoneBeacon.advertiseUid(namespaceId, instanceId, [options]);
Use with interleaved TLM mode, see options above.
var batteryVoltage = 500; // between 500 and 10,000 mV
eddystoneBeacon.setBatteryVoltage(batteryVoltage);
var temperature = 22.0; // between -128.0 and 128.0
eddystoneBeacon.setTemperature(temperature);
npm install
npm test
FAQs
Create an Eddystone Beacon using Node.js
We found that eddystone-beacon demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.