0

Is it possible to read the pressure data from ApplePencil outside an UIView? For example on the frame of an iPad?

I have stumbled across this project, where the ApplePencil was used as electronic scale. But in this project the tip of the pencil still needs to be on the iPad display inside an UIView.

Dávid Pásztor
  • 51,403
  • 9
  • 85
  • 116
tomaculum
  • 547
  • 4
  • 15

1 Answers1

1

There's no way for an Apple Pencil to draw outside of a device screen.

However there exist some smart pens with iOS SDKs wich you can use to draw and get the data via bluetooth. The Neo smartpen is just one example: https://github.com/NeoSmartpen/IOS-SDK2.0

Jeremy Merse
  • 81
  • 1
  • 3
  • Thank you very much! I understand that there is no way of telling the location of the Apple Pencil outside of the display area but I have read that the pressure information transfers via bluetooth, therefore I thought it should be possible to get this data without the screen? – tomaculum Jun 27 '19 at 13:27