/// <summary> /// get row undex which holds battery level /// </summary> /// <param name="board_id"></param> /// <returns>row num in 2d array</returns> /// <exception cref="BrainFlowException">If this board has no such data exit code is UNSUPPORTED_BOARD_ERROR</exception> public static int get_battery_channel (int board_id) { int[] val = new int[1]; int res = BoardControllerLibrary.get_battery_channel (board_id, val); if (res != (int)CustomExitCodes.STATUS_OK) { throw new BrainFlowException (res); } return val[0]; }