#0 (start of file), int versionFile, int #X10 devices, int scenes, int networkID (X10 = always 1) 0,5,4,4,1 # # [Devices section] # 3, String deviceID, int manufacturerID, int productID, int #receiveComponents, int #transmitComponents, string roomname, string devicename, int turnOnLevel # - deviceID: the X10 deviceID: housecode devicecode, e.g. A1 # - manufacturerID (see below) # - productID (see below) # - receiveComponents: number of receive components, usually 1 (other values not tested) # - transmitComponents: number of transmit components, usually 0 (other values not tested) # - room name: suggests the physical location of a file # - device name: a human readable name for the device # - turnOnLevel: the level that used by a dimmer device itself if a X10 On is send. # - -1: the dimmer uses the level before it was turned off, for the turn-on level # - any other number between 1 and 100: the level to be used for the turn-on level # # Currently available devices (extend in X10Product.java if you like) # - Marmitek (manufactererID 0) # - LM12 (productID 4) (not tested) # - AM12 (productID 5) (tested) # - LM15 (productID 6) (tested) # - TM13 (productID 7) (tested) # # - S-10 (manufactererID 1) # - S2026 (productID 1) (tested) # - S2267 (prodcutID 2) (not tested) # # - Xanura (manufactererID 2) # - SAIX (productID 1) (tested) # # - Gordijn (manufactererID 255) # - Virtual Dimmer (productID 1) (tested, used to generate XPL messages based on a X10 remote control) # - Virtual OnOff (productID 2) (tested, used to generate XPL messages based on a X10 remote control) # 3,A1,2,1,0,1,Main Room,Coffee,-1 3,A2,1,1,0,1,Sleeping Room,Bedlight,-1 3,A9,0,5,0,1,Main Room,Lamp,-1 3,A11,1,1,0,1,Kitchen,Dimmer,-1 3,A12,2,1,0,1,Main Room,Wall Lamp,-1 3,A13,255,1,0,1,Remote Control,K13,-1 3,A14,255,2,0,1,Remote Control,K14,-1 # # [Scenes section] # 2, int linkID, String linkname # # A1, A2, A9 100%, A11 50 % 2,1,TestLink # A11 50 % 2,2,DimLink10A9On # A11 off 2,3,DimLinkOff # A11 100% 2,4,DimLinkOn # # [Links section: devices participating in scenes] # 4, String deviceID, int linkID, int dimLevel # 4,A1,1,100 4,A2,1,100 4,A9,1,100 4,A11,1,50 4,A11,2,10 4,A9,2,100 4,A11,3,0 4,A11,4,100 # #1 end of file 1