Apollo Monitor is a lightweight menu bar utility that gives you instant access to your Universal Audio Apollo Solo's monitor controls without needing to open the full UA Console application.
Perfect for producers, engineers, and musicians who want quick access to essential monitoring functions while working in their DAW.
| Feature | Description |
|---|---|
| Volume Control | Precise dB control with visual slider (-∞ to 0 dB) |
| Mute | One-click mute toggle with visual feedback |
| Dim | -17dB dim function for quick level reduction |
| Mono | Mono summing for checking mix translation |
| Real-time Sync | Bi-directional sync with UA Console app |
| Native UI | Built with SwiftUI, follows Apple Human Interface Guidelines |
| Lightweight | Runs silently in menu bar, minimal resource usage |
- macOS 14.0 (Sonoma) or later
- Universal Audio Apollo Solo (Thunderbolt)
- UA Console app must be running
- Download the latest
.dmgfrom Releases - Open the DMG and drag
ApolloMonitor.appto your Applications folder - First launch only: Right-click the app → Open → Open (see note below)
- The app will appear in your menu bar with a dial icon
⚠️ Security Note: This app is not notarized with Apple (requires $99/year developer account). macOS will block it on first launch. To open:
- Right-click (or Control-click) on
ApolloMonitor.app- Select Open from the menu
- Click Open in the dialog
You only need to do this once. After that, the app will open normally.
# Clone the repository
git clone https://github.com/noiseheroes/ApolloMonitor.git
cd ApolloMonitor
# Open in Xcode
open ApolloMonitor.xcodeprojThen in Xcode:
- Select your Development Team in Signing & Capabilities
- Build and Run (⌘R)
- Click the dial icon in your menu bar to open the control panel
- Drag the slider to adjust monitor volume (-∞ to 0 dB)
- Click the buttons to toggle Mute, Dim, or Mono
- The panel automatically closes when you click outside
| Control | Function | Visual Indicator |
|---|---|---|
| Volume Slider | Adjusts monitor output level | Blue slider + dB display |
| Mute | Silences monitor output | Red highlight when active |
| Dim | Reduces level by 17dB | Orange highlight when active |
| Mono | Sums stereo to mono | Purple highlight when active |
Apollo Monitor communicates with the UA Console application via a local TCP socket on port 4710. This is the same internal protocol used by Universal Audio's own software.
Protocol: TCP/IP
Port: 4710
Host: 127.0.0.1 (localhost)
Format: JSON over null-terminated strings
| Parameter | Path | Type |
|---|---|---|
| Monitor Level | /devices/0/outputs/4/CRMonitorLevel |
Float (dB) |
| Mute | /devices/0/outputs/4/Mute |
Boolean |
| Dim | /devices/0/outputs/4/DimOn |
Boolean |
| Mono | /devices/0/outputs/4/MixToMono |
Boolean |
ApolloMonitor/
├── ApolloMonitor/ # Main menu bar app
│ ├── ApolloMonitorApp.swift # App entry point
│ ├── AppDelegate.swift # Menu bar setup & lifecycle
│ ├── MonitorView.swift # SwiftUI interface
│ └── Info.plist # App configuration
│
├── ApolloMonitorWidget/ # macOS Widget (WidgetKit)
│ └── ApolloMonitorWidget.swift
│
├── Shared/ # Shared code between targets
│ ├── ApolloController.swift # State management (ObservableObject)
│ └── ApolloTCP.swift # TCP client for UA Console
│
├── Assets.xcassets/ # App icon and assets
├── project.yml # XcodeGen configuration
└── README.md
- Make sure UA Console is running
- Check that your Apollo Solo is connected and powered on
- Try clicking the refresh button in the app footer
- Ensure you're controlling the correct output (Monitor output 4)
- Restart both Apollo Monitor and UA Console
- Check System Settings → Control Center → Menu Bar Only
- Try quitting and relaunching the app
The TCP protocol for communicating with Universal Audio devices was discovered and documented by the cuefinger project by @tschiemer.
This project would not be possible without their excellent reverse engineering work on the UA Console protocol.
- Created by Noise Heroes
- Built with assistance from Claude by Anthropic
This project is licensed under the MIT License — see the LICENSE file for details.
This is an unofficial third-party application.
Universal Audio, Apollo, Apollo Solo, and UA Console are trademarks of Universal Audio, Inc. This project is not affiliated with, endorsed by, or sponsored by Universal Audio.
Made with ♥ for the audio community
