/// <summary> /// Gets the current keyboard scan code set. /// </summary> /// <returns>Returns the current scan code set.</returns> private byte GetScanCodeSet() { SendCommand(Command.GetOrSetScanCodeSet, 0); return(mPS2Controller.Read()); }
private byte GetMouseId() { SendCommand(Command.GetMouseID); return(mPS2Controller.Read()); }