The display API sends glanceable, user-visible information to supported smart glasses.
Mentra Live does not have a display. Use display APIs only on display-equipped models such as G2.

Basic Text

await BluetoothSdk.displayText('Turn left in 100 ft', 0, 0, 24);

Clear Display

await BluetoothSdk.clearDisplay();

Dashboard

await BluetoothSdk.showDashboard();
Dashboard support depends on the connected glasses model and firmware.

Display Settings

Display-related settings include dashboard position, head-up angle, and screen enable/disable state.
await BluetoothSdk.setDashboardPosition(4, 6);
await BluetoothSdk.setHeadUpAngle(20);
await BluetoothSdk.setScreenDisabled(false);

Guidelines

  • Keep text short. Glasses displays are glanceable, not phone screens.
  • Prefer one primary message at a time.
  • Avoid rapid display churn. Debounce frequent updates.
  • Clear the display when information is stale.
  • Handle disconnected, not-ready, and unsupported-capability states gracefully.