All Projects → Ret70 → Ptfaketouch

Ret70 / Ptfaketouch

Simulate touch events for iOS[User mode]

Projects that are alternatives of or similar to Ptfaketouch

Firmware Over The Air
graduation project of ITI, flashing a new firmware over the air for automotive industry
Stars: ✭ 18 (-96.02%)
Mutual labels:  touchscreen
Virtual-Joystick-Godot
A simple virtual joystick for touchscreens, for both 2D and 3D games, with useful options.
Stars: ✭ 231 (-48.89%)
Mutual labels:  touchscreen
Raspberry-Pi-Clock
A quick and simple Raspberry Pi touchscreen clock with Philips hue, Tado, Dark Sky and Philips TV JointSpace API controls/data
Stars: ✭ 23 (-94.91%)
Mutual labels:  touchscreen
androidthings-mqtt-alarm-panel
Android Things Alarm Control Panel for Home Assistant
Stars: ✭ 69 (-84.73%)
Mutual labels:  touchscreen
Marlin
Optimized firmware for RepRap 3D printers based on the Arduino platform. Modified with a new DWIN T5UID1 touchscreen implementation.
Stars: ✭ 33 (-92.7%)
Mutual labels:  touchscreen
DGUS-reloaded-Klipper
DWIN T5UID1 touchscreen firmware for 3D printers running Klipper.
Stars: ✭ 71 (-84.29%)
Mutual labels:  touchscreen
Three-Factor-Security-Door
What do you get when you mix a Raspberry Pi, a MySQL database, an RFID reader, an LCD touchscreen, a relay switch, an electronic door strike and a Twilio SMS account?
Stars: ✭ 49 (-89.16%)
Mutual labels:  touchscreen
Homepoint
Espressif ESP32 Based Smarthome screen for MQTT
Stars: ✭ 391 (-13.5%)
Mutual labels:  touchscreen
v-cupertino
A Vue 3 Wrapper for Cupertino Pane Library
Stars: ✭ 17 (-96.24%)
Mutual labels:  touchscreen
DGUS-reloaded-Klipper-config
No description or website provided.
Stars: ✭ 21 (-95.35%)
Mutual labels:  touchscreen
KActionMenu
Like to iOS 3D touch menu
Stars: ✭ 21 (-95.35%)
Mutual labels:  touchscreen
replaykit.py
Python SDK for using Appetizer replaykit
Stars: ✭ 18 (-96.02%)
Mutual labels:  touchscreen
WindowsIoTEverywhere
Images & drivers to get WIndows 10 IoT running on off-the-shelf tablets, mini-pcs, and various computers.
Stars: ✭ 23 (-94.91%)
Mutual labels:  touchscreen
KlipperScreen
GUI for Klipper
Stars: ✭ 515 (+13.94%)
Mutual labels:  touchscreen
Sistine
Turn a MacBook into a Touchscreen with $1 of Hardware
Stars: ✭ 3,169 (+601.11%)
Mutual labels:  touchscreen
stm32 i2c to usb hid multitouch
i2c to usb hid multi touch with stm32
Stars: ✭ 55 (-87.83%)
Mutual labels:  touchscreen
TouchControl
Control at your fingertips.
Stars: ✭ 16 (-96.46%)
Mutual labels:  touchscreen
Tslib
Touchscreen access library
Stars: ✭ 416 (-7.96%)
Mutual labels:  touchscreen
React Simple Keyboard
React Virtual Keyboard - Customizable, responsive and lightweight
Stars: ✭ 301 (-33.41%)
Mutual labels:  touchscreen
jarvis
Jarvis Home Automation
Stars: ✭ 81 (-82.08%)
Mutual labels:  touchscreen

PTFakeTouch

Simulate touch events for iOS [User mode]

Only enable in the application,and the system touch simulate libary: https://github.com/xuan32546/IOS13-SimulateTouch

Just build it and add this framework to your project. Then you can use it.

Addtions are from kif.

USE CASE

Click a point at screen

NSInteger pointId = [PTFakeTouch fakeTouchId:[PTFakeTouch getAvailablePointId] AtPoint:CGPointMake(100,100) withTouchPhase:UITouchPhaseBegan];
[PTFakeTouch fakeTouchId:pointId AtPoint:CGPointMake(100,100) withTouchPhase:UITouchPhaseEnded];

Swipe screen

NSInteger pointId = [PTFakeTouch fakeTouchId:[PTFakeTouch getAvailablePointId] AtPoint:CGPointMake(100,100) withTouchPhase:UITouchPhaseBegan];
[PTFakeTouch fakeTouchId:pointId AtPoint:CGPointMake(300,300) withTouchPhase:UITouchPhaseMoved];
[PTFakeTouch fakeTouchId:pointId AtPoint:CGPointMake(300,300) withTouchPhase:UITouchPhaseEnded];
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].