PyXR

c:\projects\bitpim\src \ phones \ com_sanyo7300.py



0001 ### BITPIM
0002 ###
0003 ### Copyright (C) 2004 Stephen Wood <sawecw@users.sf.net>
0004 ###
0005 ### This program is free software; you can redistribute it and/or modify
0006 ### it under the terms of the BitPim license as detailed in the LICENSE file.
0007 ###
0008 ### $Id: com_sanyo7300.py 2321 2005-04-23 01:12:49Z sawecw $
0009 
0010 """Talk to the Sanyo SCP-7300 (RL2000) cell phone"""
0011 
0012 # my modules
0013 import common
0014 import p_sanyo7300
0015 import com_brew
0016 import com_phone
0017 import com_sanyo
0018 import com_sanyomedia
0019 import com_sanyonewer
0020 import prototypes
0021 
0022 
0023 class Phone(com_sanyonewer.Phone):
0024     "Talk to the Sanyo SCP-7300 cell phone"
0025 
0026     desc="SCP-7300"
0027 
0028     FIRST_MEDIA_DIRECTORY=2
0029     LAST_MEDIA_DIRECTORY=3
0030 
0031     imagelocations=(
0032         # offset, directory #, indexflag, type, maximumentries
0033         )    
0034 
0035     protocolclass=p_sanyo7300
0036     serialsname='scp7300'
0037 
0038     calendar_defaultringtone=4
0039 
0040     def __init__(self, logtarget, commport):
0041         com_sanyonewer.Phone.__init__(self, logtarget, commport)
0042         self.mode=self.MODENONE
0043 
0044 class Profile(com_sanyonewer.Profile):
0045 
0046     protocolclass=Phone.protocolclass
0047     serialsname=Phone.serialsname
0048     phone_manufacturer='SANYO'
0049     phone_model='SCP-7300/US'
0050 
0051     WALLPAPER_WIDTH=132
0052     WALLPAPER_HEIGHT=176
0053     OVERSIZE_PERCENTAGE=100
0054 
0055     def __init__(self):
0056         com_sanyonewer.Profile.__init__(self)
0057 

Generated by PyXR 0.9.4