👩‍💻 kittyfarren.dev


Project: BLE Earrings

This is a set of earrings that flash when a message is sent from a phone/computer.

When I watched Bladerunner 2049 I saw Sylvia Hoeks playing Luv and in particular I saw her serving looks in this cool earring set. Whenever Jared Leto wanted to get her attention he blinked her earrings and she knew she had to go and do something dastardly. This spoke to me as someone who often stuggles to drink water... what if I managed to make myself a futuristic bad bitch set of earrings that would remind me to carry out basic tasks? It can be done. The future is now.

Sylvia Hoeks wearing the original BLE Earrings
Sylvia Hoeks leaving no crumbs. The earrings flash blue when a message is received.

Design Requirements

The key considerations for this project is that it must be small and pretty as in the BladeRunner film, have a BOM I can afford (under £60 for prototype), be manufacturable on the 10cm x 10cm hotplate I have at home (no BGAs) and have a battery life that lasts at least one full day at work or with preference a full week. These requirements guided all primary design decisions.

Hardware

Elements

Earrings

One for the right ear and a mirrored layout for the left ear (the mirror is necessary because you cant buy a mirrored verison of chips)- something obvious to others but not to me. Includes a battery and charge protections circuits, bluetooth antenna and connections to the neopixel pendant.

Dock

This is extra battery, a boost converter (to get from a 3V7 battery to 5V for USB) a hub to allow for USB comms with both earrings at once and serial comms broken out for flashing and debugging.

Pendant

This is the charm that hangs down from the earring. Basically just some connection points and a neopixel.

Which Micro?

The ESP32 (C3) and NRF52(833) were the two choices I picked between. Both are low cost, both have BLE, both have good BLE example documentation and layout examples and both had QFN package options. However, the ESP32 C3 had a much higher power consumption of 250mA when transmitting with BLE (due to its large functionality- dual bluetooth AND WiFi) than the NRF52833 which is 15mA and is targeted specifically at BLE applications. NRF52 boards also only consume 2.6uA with bluetooth off which is perfect for the earrings that wont transmit/ recieve very often. I require the earrings to be as small as possible and therefore have the smallest battery, so need the lowest power cosumption.

First Layouts and Panel

For the dock I followed the recommended layout (provided by the manufacturer) for the USB2422T-I/MJ chip I was using for the hub. This was used with the SIP32509DT-T1-GE3 power switch for the VBUS management. I used the recommendations provided in the BQ24073RGTR battery management IC for the battery management.

For the earrings I followed the NRF52833 layout recommendations for bluetooth applications. I also used the LiPo Amigo Pro for the battery management on the earrings. I used the TI 2.4GHz premade antenna and followed their layout recommendations (no components too close to the antenna, matched impedance tracks to the antenna and nice uninterrupted ground plane next to the antenna). I used matched impedance tracks for the USB connections. The size of the earring was controlled by the size of the battery.

The pendant is very simple but has no official terminal connection (only holes) to minimise size.

Software and Firmware

I am yet to start on any firmware or software.