MCJack123 / craftos2

A fast, modern, and feature-filled ComputerCraft emulator written in C++.

Home Page:https://www.craftos-pc.cc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Device sensor support

EmmaKnijn opened this issue · comments

Is your feature request related to a problem? Please describe.
I'd really like to grab sensor data (like gyroscope or compass), specifically for mobile devices. You'd be able to make a wiimote for cc running ingame or even vr.

Describe the solution you'd like
I'd like to be able to run a lua command (like mobile.sensor([sensor_type])) and have it return data, and also have a mobile.sensorAsync([sensor_type],[rate]) method to make it spit out events at the specified rate or a default rate when no rate is supplied.

Some sensors that'd seem neat for CC:

  • accelerometer
  • gyro
  • proximity
  • compass
  • barometer
  • gyroscope
  • light sensor

I don't think biometric sensors would work well with CC

Describe alternatives you've considered
I don't think there's any other great way to implement this