Click here to Skip to main content
15,892,005 members
Articles / Programming Languages / C++

Writing a Sensor Driver for the Wiimote on Windows 7

Rate me:
Please Sign up or sign in to vote.
4.93/5 (61 votes)
16 Feb 2010CPOL30 min read 276K   16.7K   106  
How to write a Sensor driver that provides access to the 3-axis accelerometer on a Nintendo Wiimote on Windows 7
#pragma once

class CClient
{
public:
	CComPtr<IWDFFile>		m_spClientID;		// we use the "IWDFFile" pointer as
												// unique identifier for the client
	map<wstring, CSensor*>	m_mapSensors;		// the sensors in which this client is
												// interested

	CClient(IWDFFile *pID);

	bool AddSensor(CSensor *pSensor);
	bool AddSensor(LPWSTR pwszSensorID);
	bool RemoveSensor(LPWSTR pwszSensorID);
	CSensor *GetSensor(LPWSTR pwszSensorID);
	ULONG GetSensorsCount();
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Microsoft
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions