package com.ifpdos.mcusdk.helper.sync;

import com.ifpdos.mcusdk.McuCommonCommand;
import com.ifpdos.mcusdk.McuCommonResponse;
import com.ifpdos.mcusdk.McuSDK;

/* JADX INFO: loaded from: classes.dex */
public class SDKUsbHelper {
    public McuCommonResponse switchFrontUSB(byte b) {
        return McuSDK.getInstance().sendMcuDataSync(new McuCommonCommand((byte) 41, (byte) 6, new byte[]{b}, (byte) 6));
    }

    public McuCommonResponse switchSideUSB(byte b) {
        return McuSDK.getInstance().sendMcuDataSync(new McuCommonCommand((byte) 41, (byte) 20, new byte[]{b}, (byte) 20));
    }

    public McuCommonResponse switchWifiUsb(byte b) {
        return McuSDK.getInstance().sendMcuDataSync(new McuCommonCommand((byte) 41, (byte) 26, new byte[]{b}, (byte) 26));
    }

    public McuCommonResponse switchMicUsb(byte b) {
        return McuSDK.getInstance().sendMcuDataSync(new McuCommonCommand((byte) 41, (byte) 30, new byte[]{b}, (byte) 30));
    }

    public McuCommonResponse switchCameraUsb(byte b) {
        return McuSDK.getInstance().sendMcuDataSync(new McuCommonCommand((byte) 41, (byte) 42, new byte[]{b}, (byte) 42));
    }

    public McuCommonResponse switchUsbHub(byte b) {
        return McuSDK.getInstance().sendMcuDataSync(new McuCommonCommand((byte) 41, (byte) 46, new byte[]{b}, (byte) 46));
    }
}
