Any way to upload multiple entries for RAVA address book at once?


 

As far as I know I have to use "SIPADDEXT 101 192.168.1.51 KITCHEN" command to add just 1 entry for the kitchen @ 192.168.1.51 address and with 101 extension.  But I have 16 Touchpanels, so I have 15 entries I have to make for each touchpanel command line in that case... is there an easier way to make an address book for the TSW panels?


 

Could you not just have an sio in your program with all the entries in it that feed in to the "number to dial" serial on the VoIP extender module?  Then just buttons on the TP that trigger the relevant string.


 

There's a Toolbox script floating around somewhere, with an example of creating address book entries on multiple panels. If you can find it in Online Help, reach out to True Blue.


 

yes, but the number to dial doesn't work without the full address book entry for that other touchpanel so I think I have to put the full "SIPADDEXT 105 192.168.1.215 KITCHEN" entry for each address book entry on each touchscreen  Found the script I was looking for:
https://community.crestron.com/s/article/id-5267


 
Змінено

Worked like a champ - one thing to keep in mind is that the room name cannot have a space character or it won't load into the address book and it wont even give you an error.  Here is the script I created in case it can help someone else!
 
edit: YOU WILL NEED TO REBOOT THE TOUCHSCREENS AFTER YOU ADD THE ADDRESS BOOK - I ALSO FOUND THIS OUT THE HARD WAY!
 
//Crestron Toolbox Template Script File.
[Header]
// Global settings go here.
// Add key to individual sections to override, otherwise these values will be used.
DebugStrings=on
AbortOnError=on
ConcurrentSectionLimit=40
GlobalReportFile=|$scriptpath||$scriptfilename|- ReportLog |$date| |$time|.log
GlobalReportFileIncludeAll=on
[Variables]
//Predefined: $time $date $scriptfilename $scriptpath $scriptsection $scriptconnect $scriptindex $LF
//SampleVar=This is a sample variable
[First Section]
Connect=
//DataLogFile=
//LogFile=
[AddressList:SIP-RAVA Panels]
auto 192.168.1.211
auto 192.168.1.212
auto 192.168.1.213
auto 192.168.1.214
auto 192.168.1.215
auto 192.168.1.216
auto 192.168.1.217
auto 192.168.1.218
auto 192.168.1.219
auto 192.168.1.220
auto 192.168.1.221
auto 192.168.1.222
auto 192.168.1.223
auto 192.168.1.224
auto 192.168.1.225
auto 192.168.1.226
[Build Address Book on All Panels]
Connect=AddressList:SIP-RAVA Panels
CommunicationsSendAndWait "SIPADDEXT 101 192.168.1.211 MASTER\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 102 192.168.1.212 OFFICE\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 103 192.168.1.213 ENTRY\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 104 192.168.1.214 THEATER\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 105 192.168.1.215 KITCHEN\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 106 192.168.1.216 GARAGE1\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 107 192.168.1.217 GREATRM\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 108 192.168.1.218 POOL\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 109 192.168.1.219 BILLIARD\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 110 192.168.1.220 CELLAR\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 111 192.168.1.221 GARAGE2\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 112 192.168.1.222 CASITALR\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 113 192.168.1.223 GUEST1\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 114 192.168.1.224 GUEST2\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 115 192.168.1.225 GUEST3\r",5,true,>
CommunicationsSendAndWait "SIPADDEXT 116 192.168.1.226 CASITABED\r",5,true,>