| 
      
        Package phones ::
        Module com_lgvx8610
      
     | 
    
      
     | 
  
 1   
 2   
 3   
 4   
 5   
 6   
 7   
 8   
 9   
10  """ 
11  Communicate with the LG VX8610 (Decoy) cell phone.  This is based on the enV2 model 
12  """ 
13   
14  import common 
15  import com_lgvx9100 
16  import p_lgvx9100 
17  import helpids 
18   
19   
20  parentphone=com_lgvx9100.Phone 
32   
33   
34  parentprofile=com_lgvx9100.Profile 
36      protocolclass=Phone.protocolclass 
37      serialsname=Phone.serialsname 
38   
39      BP_Calendar_Version=3 
40      phone_manufacturer='LG Electronics Inc' 
41      phone_model='VX8610' 
42   
43      WALLPAPER_WIDTH=240 
44      WALLPAPER_HEIGHT=320 
45   
46      imageorigins={} 
47      imageorigins.update(common.getkv(parentprofile.stockimageorigins, "images")) 
48      imageorigins.update(common.getkv(parentprofile.stockimageorigins, "video")) 
49      imageorigins.update(common.getkv(parentprofile.stockimageorigins, "images(sd)")) 
50      imageorigins.update(common.getkv(parentprofile.stockimageorigins, "video(sd)")) 
53   
54   
55   
56   
57      ringtoneorigins=('ringers', 'sounds', 'sounds(sd)') 
58      excluded_ringtone_origins=('sounds', 'sounds(sd)') 
59   
60       
61      imagetargets={} 
62      imagetargets.update(common.getkv(parentprofile.stockimagetargets, "wallpaper", 
63                                        {'width': 240, 'height': 320, 'format': "JPEG"})) 
64   
 67