UltraDynamo是一款Windows桌面应用,它利用了下一代Ultrabook中的各种传感器,包括加速度计、陀螺仪、倾角计、指南针、GPS和环境光传感器。这款应用旨在为赛车爱好者提供一个滚动道路环境,使他们能够利用这些传感器来测试他们的车辆性能。从技术上讲,它能够执行诸如反应计时器、加速/制动计时器(例如0到60英里/小时)、距离计时器(例如四分之一英里)以及功率计算(例如制动马力)等功能。此外,它还可以将数据映射到GPS位置并叠加到地图上(例如Google地图)。然后,这些数据可以以各种格式呈现给用户,例如数字、图表、图片。
为了开发这个应用,使用了以下环境:
收到了作为比赛一部分的Ultrabook,所以在最初的开发或传感器测试中并没有使用它。这让不得不寻找一些有趣的解决方法,将在稍后介绍。为了保持所有机器的同步,使用VisualSVN Server作为源代码库,它托管在Windows 2008 R2虚拟机上。为了允许Visual Studio 2012 IDE与源代码库集成和通信,使用了AnkhSVN插件。这非常简单,只需在一台机器上检查代码更改,然后在其他机器上更新到最新版本即可。这种方法非常适合从多台机器上管理源代码,并且只有一名开发者。
在开发Windows 8和Windows运行时(WinRT)时,必须对Visual Studio创建的项目文件进行一些修改。首先,创建一个新的Windows FormsC#应用程序,并针对相关的.NET Framework,在情况下是.NET 4.5。之后,必须卸载项目。在解决方案资源管理器中,右键单击项目并选择卸载。
接下来,在Visual Studio中,右键单击项目并选择“编辑”insertyourprojectname
.csproj。在主Project
元素下插入新的PropertyGroup
,如下所示:
<PropertyGroup>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<TargetPlatformVersion>8.1</TargetPlatformVersion>
</PropertyGroup>
保存更改,关闭编辑器窗口。接下来,在解决方案资源管理器中,重新加载项目。
接下来,需要添加适合Windows运行时和传感器库的引用。首先,在解决方案资源管理器中,项目下右键单击“引用”并选择“添加引用”。最后,需要添加传感器库(Windows.Devices.Sensors.dll
)和Introp库(System.Runtime.InteropServices.WindowsRuntime.dll
)。重复“添加引用”过程,但这次选择浏览并导航到库存储的位置。
在上面的仪表板图像中,会看到表单使用了表盘。没有太多时间去编写自己的控件或寻找不同的控件来尝试。幸运的是,在CodeProject上找到了一个表盘控件。Ambalavanar Thirugnanam已经编写并提供了一个名为Aqua Gauge的控件,这非常容易实现,并且是一个很好的初始实现。
///
Aqua Gauge Control - A Windows User Control.
///
Author : Ambalavanar Thirugnanam
///
Date : 24th August 2007
///
email : [email removed from article to protect from address sniffers]
///
This is control is for free. You can use for any commercial or non-commercial purposes.
///
[Please do no remove this header when using this control in your application.]
Release History
V1.1 - This used the improved sensor manager code, added the double buffering to the drawing aspects and re-instated the simulator code. The first test code of the reaction timers is present in the source, but not available to the user.
V1.0 - This was the first rushed out the door code. It had flickering displays, the simulator code was disabled and hidden from view.