Namespaces
Variants
Actions
Revision as of 08:54, 6 August 2012 by hamishwillee (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Archived:Displaying information about available sensors on S60 3rd Edition

Jump to: navigation, search
Archived.png
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.

Remove from Archive?: This article has been marked for removal from archive, for the following reasons:
This information still looks relevant on latest version. Suggest unarchive and rename "Displaying information about available sensors using Symbian C++"
Article Metadata

Tested with
Devices(s): Nokia N95 8GB

Compatibility
Platform(s): S60 3rd Edition FP1

Platform Security
Signing Required: Self-Signed
Capabilities: None

Article
Keywords: CRRSensorApi, TRRSensorInfo, CRRSensorApi::FindSensorsL(), TRRSensorInfo::iSensorId, TRRSensorInfo::iSensorCategory, TRRSensorInfo::iSensorName
Created: tapiolaitinen (02 Apr 2008)
Last edited: hamishwillee (06 Aug 2012)

Contents

Overview

This snippet displays information about available sensors on your device.

The following information is displayed:

  • Sensor name
  • Sensor ID
  • Sensor category
Note.png
Note: In order to use the code, you need to install the sensor plug-in for your SDK.

MMP file

The following libraries are required:

LIBRARY RRSensorApi.lib

Source file

#include <aknnotewrappers.h>  // CAknInformationNote
#include <RRSensorApi.h>
RArray<TRRSensorInfo> sensorList;
CleanupClosePushL(sensorList);
 
// Retrieve list of available sensors
CRRSensorApi::FindSensorsL(sensorList);
 
// Get number of sensors available
TInt sensorCount = sensorList.Count();
 
// Display information about each of the sensors
for (TInt i = 0; i < sensorCount; i++)
{
TInt sensorId = sensorList[i].iSensorId;
TInt sensorCategory = sensorList[i].iSensorCategory;
TBuf<KMaxSensorName> sensorName = sensorList[i].iSensorName;
 
TBuf<255> buffer;
_LIT(KTxt, "%S: %x, %x");
buffer.Format(KTxt, &sensorName, sensorId, sensorCategory);
CAknInformationNote* note = new (ELeave) CAknInformationNote(ETrue);
note->ExecuteLD(buffer);
}
 
CleanupStack::PopAndDestroy(); // sensorList

Postconditions

Information about available sensors is displayed.

379 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved