sysinfo.py

来自「python s60 1.4.5版本的源代码」· Python 代码 · 共 89 行

PY
89
字号
#
# sysinfo.py
#
# Copyright (c) 2005-2007 Nokia Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

import e32
try: 
    import _sysinfo
except SystemError:
    raise ImportError('Sysinfo facility in use')

def os_version():
    return _sysinfo.os_version()
def sw_version():
    return _sysinfo.sw_version()
def imei():
    return _sysinfo.imei()
def battery():
    return _sysinfo.battery()
def signal():
    return _sysinfo.signal_bars()
def signal_bars():
    return _sysinfo.signal_bars()
if e32.s60_version_info>=(2,8):
  def signal_dbm():
      return _sysinfo.signal_dbm()
def total_ram():
    return _sysinfo.total_ram()
def total_rom():
    return _sysinfo.total_rom()
def max_ramdrive_size():
    return _sysinfo.max_ramdrive_size()
def display_twips():
    return _sysinfo.display_twips()
def display_pixels():
    return _sysinfo.display_pixels()
def free_ram():
    return _sysinfo.free_ram()
def free_drivespace():
    return _sysinfo.free_drivespace()
def ring_type():
    val=_sysinfo.ring_type()
    if val == 0:
        return 'normal'
    elif val == 1:
        return 'ascending'
    elif val == 2:
        return 'ring_once'
    elif val == 3:
        return 'beep'
    elif val == 4:
        return 'silent'
    else:
        return 'unknown'
def active_profile():
    val=_sysinfo.active_profile()
    if val == 0:
        return 'general'
    elif val == 1:
        return 'silent'
    elif val == 2:
        return 'meeting'
    elif val == 3:
        return 'outdoor'
    elif val == 4:
        return 'pager'
    elif val == 5:
        return 'offline'
    elif val == 6:
        return 'drive'
    else:
        return 'user'+str(val)

   
        
    

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?