You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
602 B
30 lines
602 B
![]()
2 years ago
|
//
|
||
|
// JL_SystemEQ.h
|
||
|
// JL_BLEKit
|
||
|
//
|
||
|
// Created by 李放 on 2021/12/20.
|
||
|
// Copyright © 2021 www.zh-jieli.com. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <JL_BLEKit/JL_FunctionBaseManager.h>
|
||
|
#import <JL_BLEKit/JL_TypeEnum.h>
|
||
|
#import <JL_BLEKit/JL_Tools.h>
|
||
|
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
|
||
|
@interface JL_SystemEQ : JL_FunctionBaseManager
|
||
|
|
||
|
#pragma mark ---> 设置系统EQ
|
||
|
/**
|
||
|
@param eqMode EQ模式
|
||
|
@param params EQ参数(10个参数,仅适用于JL_EQModeCUSTOM情况)
|
||
|
*/
|
||
|
-(void)cmdSetSystemEQ:(JL_EQMode)eqMode Params:(NSArray* __nullable)params;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|