Namespaces
Variants
Actions

Archived:Retrieving system information with the m language

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}}.

M on Symbian is not maintained and may not run on current Symbian versions. All M articles have been archived.
MultiMediaTile.png
Article Metadata

Tested with
Devices(s): Nokia N95, Nokia E90

Compatibility
Platform(s): S60 2nd Edition, S60 3rd Edition, S60 5th Edition

Platform Security
Capabilities: )

Article
Created: bogdan.galiceanu (02 May 2009)
Last edited: hamishwillee (09 May 2013)

Contents

Overview

This article shows how to retrieve system information in m.

Preconditions

Retrieving IMSI on Nokia 6600 does not work. The returned value is 000000000000000.

Source code

use system, gsm
 
 
print "Machine UID: " + system.hal(5)
print "CPU frequency in kHz: " + system.hal(11)
print "Display width in pixels: " + system.hal(31)
print "Display height in pixels: " + system.hal(32)
print "Display width in twips: " + system.hal(33)
print "Display height in twips: " + system.hal(34)
print "Display colors: " + system.hal(35)
print "System langauge: " + system.hal(68) //Returns 1 for English, 2 for French, 3 for German etc.
print "System drive: " + system.hal(72) //Returns 1 for A:, 2 for B:, 3 for C: etc.
print "Total RAM: " + system.hal(15)
print "Free RAM: " + system.hal(16)
print "Manufacturer and model (firmware): " + system.dev
print "Signal strength: " + gsm.signal() //Value between 0 and 100
print "Cell ID: " + gsm.cid()
print "MCC: " + gsm.net()["mcc"]
print "MNC: " + gsm.net()["mnc"]
print "Short network name: " + gsm.net()["short"]
print "Long network name: " + gsm.net()["long"]
print "LAC: " + gsm.net()["lac"]
print "IMEI: " + gsm.imei
print "IMSI: " + gsm.imsi

Postconditions

The information is displayed.

Additional information

The hal function's argument is an index corresponding to an attribute. See the Symbian OS documentation for a complete list of indexes and attributes.

This page was last modified on 9 May 2013, at 05:49.
171 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