MedRockstar
MedRockstar

Reputation: 51

Implementing Eddystone hardware

What sort of hardware can I use to implement Eddystone beacons?

I don't want I manufactured hardware like estimote or radius networds hardware.

Upvotes: 0

Views: 227

Answers (1)

davidgyoung
davidgyoung

Reputation: 64941

For Eddystone-UID and Eddystone-URL, you can use:

  • Any hardware based on a Bluetooth 4.0 chip. Manufacturers include Nordic, TI, and Blue Giga make modules and systems on a chip, but you will need tooling from them to develop firmware.

  • An Android 6.0+ device that supports BLE advertising. Code is written in Java.

  • Any Linux computer including a Raspberry Pi that supports the BlueZ stack and has a Bluetooth 4.0+ device.

You cannot use:

  • An iOS device. The operating system prevents advertising

Upvotes: 1

Related Questions