# SimulateKeyboard **Repository Path**: kasumar/SimulateKeyboard ## Basic Information - **Project Name**: SimulateKeyboard - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2014-12-12 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README SimulateKeyboard ============= It doesn't contain whole source. I will add it later. Simulate keyboard library for iOS You can simulate keyboard event. Test on iOS7, but I think this supports iOS6 too. How to use ---- refer to main.mm (skeyboard; command line tool) Keycodes ---- same as keycodes for BeeKeyboard http://api.iolate.kr/beekeyboard/headers/BeeKeycode.h Example ---- Homebutton: ```sh simulateKeyboardEvent(12, 64, 1); simulateKeyboardEvent(12, 64, 0); ``` Copy (Cmd + C): ```sh simulateKeyboardEvent(7, 231, 1); simulateKeyboardEvent(7, 6, 1); simulateKeyboardEvent(7, 6, 0); simulateKeyboardEvent(7, 231, 0); ```