Anybody use python to access built-in accelerometers on windoze?
I found this:
https://docs.microsoft.com/en-us/uwp/api/Windows.Devices.Sensors.Accelerometer
but it appears to be an (COM??) object, so I hate to do battle with that
if somebody has already done the leg-work.
-Kurt
_
Hey all,
I'm having another problem. I'm wanting to get the size of a dll
resource, but...
When I do:
try:
hLib=win32api.GetModuleHandle(fileName)
except:
hLib=win32api.LoadLibrary(fileName)
if hLib==None:
raise WindowsError('File not found, '+fileName)
On Mar 4, 2017, at 11:33 AM, Kurt Eilander wrote:
>
> Anybody use python to access built-in accelerometers on windoze?
>
> I found this:
> https://docs.microsoft.com/en-us/uwp/api/Windows.Devices.Sensors.Accelerometer
>
> but it appears to be an (COM??) object, so I hate to do battle with that
On Sun, Mar 5, 2017 at 12:16 AM, Kurt Eilander wrote:
>
> I'm having another problem. I'm wanting to get the size of a dll resource,
> but...
>
> When I do:
> try:
> hLib=win32api.GetModuleHandle(fileName)
> except:
> hLib=win32api.LoadLibrary(fileName)
> if hLib==None