---
name: "offMusic2RgbChange"
mode: "api"
versionRequirements:
  - { name: "@ray-js/panel-sdk", version: "1.7.0" }
title: "offMusic2RgbChange"
---

## offMusic2RgbChange

> [VERSION] @ray-js/panel-sdk >= 1.7.0

### Description

Stop music rhythm monitoring, stop audio recording, and turn off the keep-screen-on state

### Parameters

None


### Return Value

Type: `Promise<boolean>`

Operation result Promise

### Examples

#### Example

```ts
import { kit } from '@ray-js/panel-sdk';
const { offMusic2RgbChange } = kit.music2rgb;

offMusic2RgbChange().then(() => {
  console.log('Music rhythm has stopped');
});
```
