Difference between revisions of "Bluetooth Minidisc Remote"

From Hackstrich
(Planned how shutdown will work!)
(Schematic for charging stuff is done)
Line 2: Line 2:
  
 
== Status ==
 
== Status ==
 +
* 2023-08-30: Finished schematic capture/BOM for the charging circuitry.
 +
* 2023-08-27: Figured out the shutdown requirements and put together the design/schematic for the 3 rails' converters plus most of the charging circuitry.
 
* 2023-08-22: Started putting ideas together after getting back from a trip where I used a Bluetooth transmitter dongle connected to an RM-MC11EL a whole bunch.
 
* 2023-08-22: Started putting ideas together after getting back from a trip where I used a Bluetooth transmitter dongle connected to an RM-MC11EL a whole bunch.
  

Revision as of 22:01, 30 August 2023

The Bluetooth Minidisc Remote will be a remote for portable Sony MD players that also transmits their audio over Bluetooth.

Status

  • 2023-08-30: Finished schematic capture/BOM for the charging circuitry.
  • 2023-08-27: Figured out the shutdown requirements and put together the design/schematic for the 3 rails' converters plus most of the charging circuitry.
  • 2023-08-22: Started putting ideas together after getting back from a trip where I used a Bluetooth transmitter dongle connected to an RM-MC11EL a whole bunch.

Design Goals

  • Same basic functionality you'd have on a regular Sony remote, though with an OLED screen
  • Ability to remap buttons, if you want to use it with different portables or you want different controls in different places
  • Ability to lock ("hold") all the controls except volume, since I've always wished remotes allowed this
  • Bluetooth audio transmission to BT Classic endpoints (A2DP SBC)
  • Ability to play/pause the MD device via the play/pause button on the Bluetooth receiver
  • Transmitter will stop sending audio when nothing is playing (rather than sending silence like 3.5mm BT transmitters do)
  • At least 8 hours of battery life on a charge hopefully (since with Bluetooth and an OLED, the remote will need its own internal battery)
  • Custom 3D-printed enclosure that will hopefully not be that much bigger in L/W than the flat rectangular remotes for Kenwood portables, though will be a bit thicker because of the amount of stuff I'm trying to fit in

Design Overview

  • Cypress 343026 module for MCU (built-in Cortex-M3) and Bluetooth Classic
  • Fujitsu ELW2106AA OLED display
  • DA7218 codec chip?
  • Internal battery, charged via USB-C

Power Planning

Requirements:

  • Input power
    • Li-poly pack, 3.0 - 4.2V
  • OLED
    • OLED Drive - 15.5 - 17.5V (16.5V nom)
    • Logic - 1.65 - 3.5V (3V nom)
  • BT/MCU
    • Logic - 2.3 - 3.6V (3.3V nom)
  • Codec
    • Core - 1.7 - 2.65V
    • IO - 1.5 - 3.6V

Required rails:

  • Logic - 3.0V (shut down when not connected to a MD device, fed via TLV62568 buck converter)
  • Codec core - 1.8V (switchable, fed via LDO from logic rail as current draw is very low)
  • OLED - 16.5V (switchable, fed via AP3012 boost converter)

Shutdown Planning

When not connected to a player, ideally should be drawing <10uA so the battery will last a long time. Slight chicken and egg problem though, as the buttons are connected through the MCU, but the MCU won't be running when the player isn't providing power so it can't relay button presses to the player to get it to power up. I think the current plan is to have the play/pause button connected directly through a resistor to the remote pin on the jack, but through an analog switch controlled by the MCU. When everything is powered down the button will send a resistance directly to the jack, but once the remote is powered up the switch will open and let the MCU control everything.

  • Disconnected from player (or connected but player off)
    • Logic rail shut down as remote is not receiving voltage from the player
    • Current draw
      • Analog switch running directly off battery - 4uA
      • Shut down logic rail buck converter - 2uA
      • Codec core converter runs off logic rail, so no current draw there when logic rail is shut down - 0uA
      • Shut down OLED rail boost converter - 1uA
      • Total current draw when idle - 7uA
        • Will mean only drawing ~5mAh from the battery in a month of being idle, which is reasonable
  • Connected to player with player power on
    • Analog switch opens to allow play/pause button to route through MCU instead of directly controlling
    • Logic rail powered up as remote is receiving voltage from the player