Join Now
Quality Rating:
  • Currently 0.0 / 5
(0.0 / 5 - 0 votes cast)
Expertise Level:
  • Currently 0.0 / 5
(0.0 / 5 - 0 votes cast)

This page was last modified 07:00, 22 April 2008.

CS000911 - Controlling vibra settings using CHWRMVibra

From Forum Nokia Wiki


ID CS000911 Creation date April 22, 2008
Platform S60 3rd Edition, FP1 Tested on devices Nokia N95
Category Symbian C++ Subcategory Hardware


Keywords (APIs, classes, methods, functions): CHWRMVibra,MHWRMVibraObserver,CHWRMVibra::TVibraModeState,CHWRMVibra::TVibraStatus, CHWRMVibra::ReserveVibraL(), CHWRMVibra::StartVibraL(), CHWRMVibra::ReleaseVibra(), CHWRMVibra::StopVibraL(), CHWRMVibra::VibraSettings(), CHWRMVibra::VibraStatus(),MHWRMVibraObserver::VibraModeChanged(),MHWRMVibraObserver::VibraStatusChanged()

Overview

This code snippet shows how the CHWRMVibra class can be used to control vibra settings. The example class CVibraController contains methods to reserve and release vibra, set vibra on or off, and it also receives notifications about vibra state changes by implementing the interface MHWRMVibraObserver.

This snippet can be self-signed.

MMP file

The following libraries are required:

LIBRARY HWRMVibraClient.lib
LIBRARY avkon.lib //CAknListQueryDialog CAknNumberQueryDialog

Resource file

#include <eikon.rh>
#include <avkon.rsg>
#include <avkon.rh>
 
RESOURCE ARRAY r_vibracontroller_bool_items
    {
	items =
		{
		LBUF { txt = "EFalse"; },
		LBUF { txt = "ETrue"; }
		};
    }
 
RESOURCE AVKON_LIST_QUERY r_vibracontroller_restore_list
    {    
    flags = EGeneralQueryFlags;
    items =
        {
        AVKON_LIST_QUERY_DLG_LINE
            {
            type = EAknCtListQueryControl;
            id = EListQueryControl;
            control = AVKON_LIST_QUERY_CONTROL
                {
                listtype = EAknCtSinglePopupMenuListBox;
                heading = "Restore parameter:";
                listbox = LISTBOX
                    {
                    flags = EAknListBoxSelectionList;
                    array_id = r_vibracontroller_bool_items;
                    };
                };
            }
        };
    }
 
RESOURCE AVKON_LIST_QUERY r_vibracontroller_noccoeenv_list
    {    
    flags = EGeneralQueryFlags;
    items =
        {
        AVKON_LIST_QUERY_DLG_LINE
            {
            type = EAknCtListQueryControl;
            id = EListQueryControl;
            control = AVKON_LIST_QUERY_CONTROL
                {
                listtype = EAknCtSinglePopupMenuListBox;
                heading = "NoCCoeEnv parameter:";
                listbox = LISTBOX
                    {
                    flags = EAknListBoxSelectionList;
                    array_id = r_vibracontroller_bool_items;
                    };
                };
            }
        };
    }
 
RESOURCE DIALOG r_vibracontroller_duration_query
	{
	flags=EGeneralQueryFlags;
	buttons=R_AVKON_SOFTKEYS_OK_CANCEL;
    	items=
		{
		DLG_LINE
			{
			type=EAknCtQuery;
			id=EGeneralQuery;
			control= AVKON_DATA_QUERY 
				{ 
				layout = ENumberLayout;
				label = "Enter duration (0 to 2147482)";
				control = AVKON_INTEGER_EDWIN
					{
					min=0;
					max=2147482;
					};
				};
			}
		};
	}
 
RESOURCE DIALOG r_vibracontroller_vibra_intensity_query
	{
	flags=EGeneralQueryFlags;
	buttons=R_AVKON_SOFTKEYS_OK_CANCEL;
    	items=
		{
		DLG_LINE
			{
			type=EAknCtQuery;
			id=EGeneralQuery;
			control= AVKON_DATA_QUERY 
				{ 
				layout = ENumberLayout;
				label = "Enter vibra intensity (-100 to 100)";
				control = AVKON_INTEGER_EDWIN
					{
					min=-100;
					max=100;
					};
				};
			}
		};
	}

Header file

#ifndef VIBRACONTROLLER_H
 #define VIBRACONTROLLER_H
 
 #include <HWRMVibra.h>
 
 class CVibraController : public CBase,
                           public MHWRMVibraObserver                      
     {
  public: 
 	 static CVibraController*  NewL(); 
        
         ~CVibraController();
         
         //ask reserve parameters with dialogs
    	    void VibraReserveL();
    	    void VibraReserveL(TBool aRestoreState, 
    	    				   TBool aForceNoCCoeEnv);
    	    //ask start parameters with dialogs
    	    void VibraStartL();        
         void VibraStartL(TInt aDuration, 
         				 TInt aIntensity);        
    	    void VibraReleaseL();
         void VibraStopL();
         
         CHWRMVibra::TVibraModeState VibraSettings();
         CHWRMVibra::TVibraStatus VibraStatus();
  private:
     	 void ConstructL();
 
         // from MHWRMVibraObserver
         virtual void VibraModeChanged(CHWRMVibra::TVibraModeState aState);
         virtual void VibraStatusChanged(CHWRMVibra::TVibraStatus aStatus);
 		
  private: 
         CHWRMVibra*                   iVibra;        
     };
 
#endif  // VIBRACONTROLLER_H

Source file

#include <aknNoteWrappers.h> //CAknListQueryDialog, CAknNumberQueryDialog
#include <VibraController.rsg>
#include "VibraController.h"
 
CVibraController* CVibraController::NewL()
	{
	CVibraController* self=
	    new(ELeave) CVibraController( );
	CleanupStack::PushL(self);
	self->ConstructL();
	CleanupStack::Pop(self);
	return self;
	}
 
void CVibraController::ConstructL()
    {    
    iVibra = CHWRMVibra::NewL(this);
    }
 
CVibraController::~CVibraController()
    {
    delete iVibra; 
    }
 
void CVibraController::VibraReserveL()
    {
    TInt item(0);
    TBool restore;
    TBool forceNoCCoeEnv;
    
    CAknListQueryDialog* listDlg = new (ELeave)CAknListQueryDialog( &item );
    if( listDlg->ExecuteLD(R_VIBRACONTROLLER_RESTORE_LIST) )
        {
        // got restore state parameter
        item == 0 ? restore = EFalse : restore = ETrue;
        // now get force no CCoeEnv parameter
        listDlg = new (ELeave)CAknListQueryDialog( &item );
        if( listDlg->ExecuteLD(R_VIBRACONTROLLER_NOCCOEENV_LIST) )
            {
            // got ForceNoCCoeEnv parameter
            item == 0 ? forceNoCCoeEnv = EFalse : forceNoCCoeEnv = ETrue;
            iVibra->ReserveVibraL( restore, forceNoCCoeEnv );
            }
        else
            {
            // did not get ForceNoCCoeEnv parameter
            // ReserveVibraL not called, no ForceNoCCoeEnv value
            }
        }
    else
        {
        // Did not get restore parameter
        // Use default values EFalse, EFalse 
        iVibra->ReserveVibraL();
        }
    }
 
void CVibraController::VibraReserveL(TBool aRestoreState, TBool aForceNoCCoeEnv)
    {
    iVibra->ReserveVibraL(aRestoreState, aForceNoCCoeEnv);
    }
 
void CVibraController::VibraStartL()
    {
    CAknNumberQueryDialog* dlg;
    TInt intensity(0);
    TInt duration(0);
    
    //ask duration
    dlg = CAknNumberQueryDialog::NewL( duration );
    
    //KHWRMVibraMinIntensity, KHWRMVibraMaxIntensity, 5 ;
    if( dlg->ExecuteLD( R_VIBRACONTROLLER_DURATION_QUERY ) )
        {
        // got duration so now optionally get the intensity
        dlg = CAknNumberQueryDialog::NewL( intensity );
        //KHWRMVibraMinIntensity, KHWRMVibraMaxIntensity, 5 ;
        if( dlg->ExecuteLD( R_VIBRACONTROLLER_VIBRA_INTENSITY_QUERY ) )
            {
            // got the intensity
            // use both duration and intensity and start vibra
            iVibra->StartVibraL( duration, intensity );
            }
        else
            {
            // user pressed cancel for intensity query
            // use only duration value and start vibra
            iVibra->StartVibraL( duration );
            }
        }
    else
        {
        // user pressed cancel for duration query
        // do nothing...
        }
    }
 
void CVibraController::VibraStartL(TInt aDuration, TInt aIntensity)
{
	iVibra->StartVibraL( aDuration, aIntensity );
}
 
void CVibraController::VibraReleaseL()
    {
    //Release Vibra
    iVibra->ReleaseVibra();
    }
 
void CVibraController::VibraStopL()
    {
    //Stop Vibra
    iVibra->StopVibraL();
    }
 
CHWRMVibra::TVibraModeState CVibraController::VibraSettings()
    {
    //return value alternatives:
    //EVibraModeUnknown, EVibraModeON, EVibraModeOFF
    return iVibra->VibraSettings();
    }
 
CHWRMVibra::TVibraStatus CVibraController::VibraStatus()
    {
    //return value alternatives:
    //EVibraStatusUnknown, EVibraStatusNotAllowed, 
    //EVibraStatusStopped, EVibraStatusOn
    return iVibra->VibraStatus();
    }
 
void CVibraController::VibraModeChanged(CHWRMVibra::TVibraModeState aState)
    {
        switch ( aState )
            {
            case CHWRMVibra::EVibraModeUnknown:
                {
                // EVibraModeUnknown do something...  
                break;
                }
            case CHWRMVibra::EVibraModeON:
                {
                // EVibraModeON do something...  
                break;
                }
            case CHWRMVibra::EVibraModeOFF:
                {
                // EVibraModeOFF do something...  
                break;
                }
            default:
                {
                // Vibra mode undefined do something...  
                break;
                }
            }
    }
 
void CVibraController::VibraStatusChanged(CHWRMVibra::TVibraStatus aStatus)
    {
        switch ( aStatus )
            {
            case CHWRMVibra::EVibraStatusUnknown:
                {
                // EVibraStatusUnknown do something...            	
                break;
                }
            case CHWRMVibra::EVibraStatusNotAllowed:
                {
                // EVibraStatusUnknown do something...
                break;
                }
            case CHWRMVibra::EVibraStatusStopped:
                {
                // EVibraStatusUnknown do something...
                break;
                }
            case CHWRMVibra::EVibraStatusOn:
                {
                // EVibraStatusUnknown do something...
                break;
                }
            default:
                {
                // Vibra status undefined do something...           
                break;
                }
            }
    }


Using the CVibraController class

  • In the header file:
class CVibraController;
 
class CTestingAppUi : public CAknAppUi
  {
  //...
private:  
  //...
  CVibraController* iVibraController;
  };
  • In the source file:
#include "VibraController.h"
 
void CTestingAppUi::ConstructL()
  {
  iVibraController = CVibraController::NewL();
  }
 
CTestingAppUi::~CTestingAppUi()
  {
  delete iVibraController;
  }
  
void CTestingAppUi::ControlVibraL()
  {
 
  // == RESERVE ==
  /*
    1. param - restore: if ETrue is selected, the vibration state on last release will
    be restored upon successful reservation.
    2. param - NoCCoeEnv: if EFalse is selected, vibra will be automatically released
    when the application goes to background and reserved when the application is
    restored to foreground.
  */
  
  //show dialogs to ask values
  iVibraController->VibraReserveL();
  //...or set values without dialogs
  iVibraController->VibraReserveL(EFalse, EFalse); 
 
 
  // == START ==
  /* 
    1. param - duration: time in milliseconds that vibra will be active
    2. param - intensity: percentage of full vibra rotation speed 
    Sign digit dictates the vibra motor rotation direction.
  */  
 
  //show dialogs to ask values
  iVibraController->VibraStartL();
  //...or set values without dialogs
  iVibraController->VibraStartL(22222, 50);   
  
  
  // == STOP ==
  iVibraController->VibraStopL();
   
  
  // == RELEASE ==
  iVibraController->VibraReleaseL();
 
 
  // == GET STATUSES            
  CHWRMVibra::TVibraModeState mode = iVibraController->VibraSettings();
  CHWRMVibra::TVibraStatus status = iVibraController->VibraStatus();
    
  }

Postconditions

The CVibraController class controls vibra settings and receives vibra status change information.

NOTE: Vibrations are disabled while the USB cable is plugged in. Make sure that the USB cable is not connected while testing this example.

See also

Knowledge Base article listing leave codes when using the vibra functions:

KIS000739 - Some user-defined vibra intensity values are not supported

Related Discussions
Thread Thread Starter Forum Replies Last Post
SIP settings for s60 3rd edition mailkamlesh General Symbian C++ 0 2006-07-20 11:54
Storing Settings vvsnaresh General Symbian C++ 2 2005-11-02 17:10
Bluetooth port and BaudRate settings kissh_k Mobile Java Networking & Messaging & Security 6 2008-04-14 04:17
接收短消息乱码问题 xaoxong1984 Symbian 4 2008-03-05 15:16
Question about using small audio speaker (ear phone) aaldru General Symbian C++ 4 2006-11-08 05:16
 
Powered by MediaWiki