Subversion Repositories HomeAutomation

Rev

Rev 1008 | Rev 1013 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1008 Rev 1009
Line 19... Line 19...
19
    }
19
    }
20
}
20
}
21
 
21
 
22
function printTo(clientId, text)
22
function printTo(clientId, text)
23
{
23
{
24
    _print(ClientId, text);
24
    _print(clientId, text);
25
}
25
}
26
 
26
 
27
function services()
27
function services()
28
{
28
{
29
    var list = new Array();
29
    var list = new Array();
Line 76... Line 76...
76
    return ServiceManager.Services[fullId];
76
    return ServiceManager.Services[fullId];
77
}
77
}
78
 
78
 
79
var ProgrammingClientId = null;
79
var ProgrammingClientId = null;
80
 
80
 
81
function programNodeCallback(status, text)
81
function programNodeCallback(status, event, text)
82
{
82
{
83
    printTo(ProgrammingClientId, text + "\n");
83
    printTo(ProgrammingClientId, event + ": " + text + "\n");
84
}
84
}
85
 
85
 
86
function programNode(hardwareId, hexData, bios)
86
function programNode(hardwareId, hexData, bios)
87
{
87
{
88
    ProgrammingClientId = ClientId;
88
    ProgrammingClientId = ClientId;