Changeset 49
- Timestamp:
- 2014-09-06 12:38:50 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/UI7/L_DenonReceiver1.lua ¶
r47 r49 26 26 27 27 local MODEL = { 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 28 ['300'] = {zones = ""}, 29 ['1000'] = {zones = "2"}, 30 ['1713'] = {zones = "2"}, 31 ['1913'] = {zones = "2"}, 32 ['2000'] = {zones = "2"}, 33 ['2106'] = {zones = "2"}, 34 ['2307'] = {zones = "1"}, 35 ['2803'] = {zones = "1"}, 36 ['2805'] = {zones = "2"}, 37 ['2807'] = {zones = "2"}, 38 ['3312'] = {zones = "2,3"}, 39 ['3313'] = {zones = "2,3"}, 40 ['3803'] = {zones = "1"}, 41 ['3805'] = {zones = "1,2"}, 42 ['3806'] = {zones = "2,3"}, 43 ['3808'] = {zones = "2,3"}, 44 ['4000'] = {zones = "2,3"}, 45 ['4306'] = {zones = "2,3"}, 46 ['4520'] = {zones = "2,3,4"}, 47 ['4802'] = {zones = "1"}, 48 ['4806'] = {zones = "2,3"}, 49 ['5803'] = {zones = "1,2"}, 50 ['5805'] = {zones = "2,3,4"} 51 51 } 52 52 … … 54 54 ------------------------------------------------------------------------------------------ 55 55 local function log (text,level) 56 56 57 luup.log("AVRReceiverPlugin::" .. text,level or 50) 58 57 59 end 58 60 ------------------------------------------------------------------------------------------ 59 61 function debug (text,level) 62 60 63 if (DEBUG_MODE == true) then 61 64 log(text,level or 1) 62 65 end 66 63 67 end 64 68 ------------------------------------------------------------------------------------------ 65 69 function trim(s) 70 66 71 return s:match "^%s*(.-)%s*$" 72 67 73 end 68 74 ------------------------------------------------------------------------------------------ 69 75 function listTable(table) 70 for k, v in pairs(table) do 71 debug('listTable: key: _' .. k .. ' value: _' .. v .. '.') 72 end 76 77 for k, v in pairs(table) do 78 debug('listTable: key: _' .. k .. ' value: _' .. v .. '.') 79 end 80 73 81 end 74 82 ------------------------------------------------------------------------------------------ 75 83 function normaliseVolume(device, volume) 76 84 77 78 79 80 85 quant,frac = math.modf(volume) 86 frac = ((device == avr_rec_dev) and (string.format("%.1f", frac) == "0.5")) and "5" or "" 87 if ((device ~= avr_rec_dev) and (tonumber(quant) <= tonumber(MIN_VOL_ZONE))) then quant = MIN_VOL_ZONE end 88 return (string.format("%02i", quant)..frac) 81 89 82 90 end … … 98 106 function setMute(device, mute) 99 107 100 101 102 108 local zone = findZone(device) 109 local prefix = (zone ~= "ZM") and zone or "" 110 AVRReceiverSend(prefix .. "MU" .. mute) 103 111 104 112 end … … 106 114 function setMasterPower(status) 107 115 108 109 110 111 112 113 116 for k, v in pairs(luup.devices) do 117 if(v.device_num_parent == avr_rec_dev or k == avr_rec_dev) then 118 debug("setMasterPower: Device:" .. k) 119 luup.variable_set(DEN_SID,"PowerStatus", status, k) 120 end 121 end 114 122 115 123 end … … 117 125 function setVolume(device, volume) 118 126 119 local zone = findZone(device) 120 local prefix = (zone ~= "ZM") and zone or "MV" 121 local current_volume = tonumber(luup.variable_get(REN_SID,"Volume",avr_rec_dev),10) 122 if ((tonumber(volume)) ~= nil) then 123 volume = normaliseVolume(device, tonumber(volume)) 124 AVRReceiverSend(prefix .. volume) 125 else 126 volume = (volume == "UP") and "UP" or "DOWN" 127 AVRReceiverSend(prefix .. volume) 128 end 127 local zone = findZone(device) 128 local prefix = (zone ~= "ZM") and zone or "MV" 129 local current_volume = tonumber(luup.variable_get(REN_SID,"Volume",avr_rec_dev),10) 130 131 if ((tonumber(volume)) ~= nil) then 132 volume = normaliseVolume(device, tonumber(volume)) 133 AVRReceiverSend(prefix .. volume) 134 else 135 volume = (volume == "UP") and "UP" or "DOWN" 136 AVRReceiverSend(prefix .. volume) 137 end 129 138 130 139 end 131 140 ------------------------------------------------------------------------------------------ 132 141 function get_source(input_source) 133 for k, v in pairs(g_sourceName) do 134 local source = (g_sourceName[k]["source"]) 135 debug("get_source: " .. input_source .. " " .. k .. " " .. source,1) 136 if source == input_source then 137 return k 138 end 139 end 140 return false 141 end 142 142 143 for k, v in pairs(g_sourceName) do 144 local source = (g_sourceName[k]["source"]) 145 debug("get_source: " .. input_source .. " " .. k .. " " .. source,1) 146 if source == input_source then 147 return k 148 end 149 end 150 151 return false 152 153 end 143 154 ------------------------------------------------------------------------------------------ 144 155 function setInput(device, input_no) 145 156 146 147 148 149 150 151 152 153 154 155 156 157 end 158 159 160 157 local zone = findZone(device) 158 local prefix = (zone ~= "ZM") and zone or "SI" 159 local source = "" 160 161 if(tonumber(input_no,10)~= nil) then 162 source = (g_sourceName[tonumber(input_no,10)]["source"]) or false 163 else 164 for k, v in pairs(g_sourceName) do 165 source = g_sourceName[k]["source"] or false 166 end 167 end 168 169 if(source ~= false) then 170 AVRReceiverSend(prefix .. source) 171 end 161 172 162 173 end 163 174 ------------------------------------------------------------------------------------------ 164 175 function tablePrint(table, format) 176 165 177 local jsonString = '{\"PRESETS\": [' 166 167 178 local xmlString = '<?xml version=\"1.0\" encoding=\"UTF-8\"?><PRESETS>' 179 168 180 for key, value in pairs(table) do 169 181 jsonString = jsonString .. '{\"PRESETNO\": \"' .. key .. '\",' .. '\"STATION\": \"' .. value .. '\"},' 170 182 xmlString = xmlString .. '<PRESET><PRESETNO>' .. key .. '</PRESETNO><STATION>' .. value .. '</STATION></PRESET>' 171 183 end 184 172 185 jsonString = (jsonString:sub(1,-2):len() == 0) and jsonString .. ']}' or jsonString:sub(1,-2) .. ']}' 173 174 186 xmlString = xmlString .. "</PRESETS>" 175 176 local string = format == "json" and jsonString or xmlString 187 local string = format == "json" and jsonString or xmlString 177 188 return string 189 178 190 end 179 191 ------------------------------------------------------------------------------------------ 180 192 function callbackHandler(lul_request, lul_parameters, lul_outputformat) 193 181 194 local functionName = "callbackHandler" 182 195 … … 190 203 ------------------------------------------------------------------------------------------ 191 204 function handleResponse(data) 192 log("handleResponse: data received " .. data) 193 local msgFrom = data:sub(1,1) 194 local msgType = data:sub(1,2) 195 196 local msgZone = nil 197 local message = "" 198 local message_type2 = "" 199 200 if(data:match("^Z[M?%d].")) then 201 202 message = data:sub(3) 203 204 msgZone = findChild(msgType) 205 log("handleResponse: message from device: " .. tostring(msgZone)) 206 if(message:match("^CV[FCS][LR]%s%d+")) then 207 msgType, message_type2 = (message:sub(3)):match("^([FCS][LR])%s(%d+)$") 208 209 elseif (message:match("^%d+")) then 210 msgType = "MV" 211 data = data:sub(3) 212 213 elseif (message:match("^OFF$") or message:match("^ON$")) then 214 msgType = "PZ" 215 216 elseif (message:match("^MUON$") or message:match("^MUOFF$")) then 217 msgType = message:sub(1,2) 218 data = message:sub(3) 219 220 elseif (get_source(message) ~= false) then 221 msgType = "SI" 222 data = data:sub(3) 223 224 else 225 msgType = data:sub(1,2) 226 data = data:sub(3) 227 end 228 229 elseif(data:match("^R[%d].*")) then 230 msgType = "RR" 231 msgZone = avr_rec_dev 232 233 else 234 msgType = data:sub(1,2) 235 data = data:sub(3) 236 msgZone = avr_rec_dev 237 238 end 239 240 if(msgZone == nil) then msgZone = avr_rec_dev end 241 log("handleResponse: Data:" .. data .. ' Type:' .. msgType .. ' Zone:' .. msgZone) 242 processMessage (data, msgType, msgZone) 243 return true 205 206 log("handleResponse: data received " .. data) 207 local msgFrom = data:sub(1,1) 208 local msgType = data:sub(1,2) 209 local msgZone = nil 210 local message = "" 211 local message_type2 = "" 212 213 if(data:match("^Z[M?%d].")) then 214 215 message = data:sub(3) 216 217 msgZone = findChild(msgType) 218 log("handleResponse: message from device: " .. tostring(msgZone)) 219 if(message:match("^CV[FCS][LR]%s%d+")) then 220 msgType, message_type2 = (message:sub(3)):match("^([FCS][LR])%s(%d+)$") 221 222 elseif (message:match("^%d+")) then 223 msgType = "MV" 224 data = data:sub(3) 225 226 elseif (message:match("^OFF$") or message:match("^ON$")) then 227 msgType = "PZ" 228 229 elseif (message:match("^MUON$") or message:match("^MUOFF$")) then 230 msgType = message:sub(1,2) 231 data = message:sub(3) 232 233 elseif (get_source(message) ~= false) then 234 msgType = "SI" 235 data = data:sub(3) 236 237 else 238 msgType = data:sub(1,2) 239 data = data:sub(3) 240 end 241 242 elseif(data:match("^R[%d].*")) then 243 msgType = "RR" 244 msgZone = avr_rec_dev 245 246 else 247 msgType = data:sub(1,2) 248 data = data:sub(3) 249 msgZone = avr_rec_dev 250 251 end 252 253 if(msgZone == nil) then msgZone = avr_rec_dev end 254 log("handleResponse: Data:" .. data .. ' Type:' .. msgType .. ' Zone:' .. msgZone) 255 processMessage (data, msgType, msgZone) 256 return true 257 244 258 end 245 259 ------------------------------------------------------------------------------------------ 246 260 local RECEIVER_RESPONSES = { 247 261 248 249 250 262 ["MV"] = { 263 description = "Volume level change", 264 handlerFunc = function (self, data, msgZone) 251 265 local volume = data:match("(%d+)") 252 266 volume = (volume:len() == 3) and tonumber(volume/10) or tonumber(volume) 253 254 255 256 257 258 259 260 261 262 263 264 }, 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 267 volume = (volume == 99) and 0 or volume 268 if ((string.find(data, "MAX"))) then 269 log(self.description..": Setting MAX_VOL: " .. volume) 270 MAX_VOL = volume 271 return true 272 end 273 debug(self.description..": Volume: " .. volume .. " db: " .. (volume-80)) 274 luup.variable_set(REN_SID,"VolumeDB",volume-80,msgZone) 275 luup.variable_set(REN_SID,"Volume",volume,msgZone) 276 return true 277 end 278 }, 279 280 ["MU"] = { 281 description = "MUTE status change", 282 handlerFunc = function (self, data, msgZone) 283 log(self.description..": Mute: " .. data) 284 if (data == "OFF") then 285 luup.variable_set(REN_SID,"Mute","0",msgZone) 286 elseif (data == "ON") then 287 luup.variable_set(REN_SID,"Mute","1",msgZone) 288 else 289 log("response: unkown mute command" .. data .. " " .. self.description) 290 end 291 log("response: data received MU " .. data .. " " .. self.description) 292 return true 293 end 280 294 }, 281 295 282 296 ["PW"] = { 283 297 description = "Power status change", 284 285 286 287 288 289 290 291 292 293 294 298 handlerFunc = function (self, data, msgZone) 299 log(self.description ..": Power: " .. data) 300 if (string.find(data, "STANDBY")) then 301 setMasterPower("0") 302 elseif (string.find(data, "ON")) then 303 setMasterPower("1") 304 else 305 end 306 log("response: data received PW " .. data .. " " .. self.description) 307 return true 308 end 295 309 }, 296 310 297 311 ["PZ"] = { 298 312 description = "Power status change", 299 300 301 302 303 304 305 306 307 308 309 313 handlerFunc = function (self, data, msgZone) 314 log(self.description ..": Power: " .. data) 315 if (string.find(data, "OFF")) then 316 luup.variable_set(SWP_SID,SWP_STATUS,"0",msgZone) 317 elseif (string.find(data, "ON")) then 318 luup.variable_set(SWP_SID,SWP_STATUS,"1",msgZone) 319 else 320 end 321 log("response: data received PW " .. data .. " " .. self.description) 322 return true 323 end 310 324 }, 311 325 … … 313 327 description = "INPUT source change", 314 328 handlerFunc = function (self, data, msgZone) 315 316 317 318 319 320 321 322 329 log(self.description..": Input Source: " .. data) 330 luup.variable_set(DEN_SID,"Input",data,msgZone) 331 local source =get_source(data) or " Unknown" 332 --luup.variable_set(IPS_IID,"Source","Input"..source,msgZone) 333 luup.variable_set(DEN_SID,"Source","Input"..source,msgZone) 334 log("response: data received SI " .. data .. " " .. self.description) 335 return true 336 end 323 337 }, 324 338 … … 326 340 description = "VIDEO source change", 327 341 handlerFunc = function (self, data, msgZone) 328 329 330 331 332 342 log(self.description..": Video Source: " .. data) 343 luup.variable_set(DEN_SID,"Video",data,msgZone) 344 log("response: data received SV " .. data .. " " .. self.description) 345 return true 346 end 333 347 }, 334 348 … … 336 350 description = "SURROUND mode change", 337 351 handlerFunc = function (self, data, msgZone) 338 339 340 341 342 352 log(self.description..": Surround: " .. data) 353 luup.variable_set(DEN_SID,"Surround",data,msgZone) 354 log("response: data received MS " .. data .. " " .. self.description) 355 return true 356 end 343 357 }, 344 358 … … 346 360 description = "SETUP function name", 347 361 handlerFunc = function (self, data, msgZone) 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 362 if (data:sub(1,3) == "FUN") then 363 data = data:sub(4) 364 local source, name = data:match("^(.-)%s(.+)$") 365 name = trim(name):gsub("\\","\\\\") 366 log("handlerFunction: data received SS source:" .. source .. ":source name:" .. name ..":") 367 if (not tostring(source):find("^%s*$")) then 368 table.insert(g_sourceName,({["source"] = source,["name"] = name})) 369 debug(self.description..": Length of table: " .. #g_sourceName .. " Source name: " .. source) 370 end 371 end 372 if (data:sub(1,3) == "TPN") then 373 local source = data:sub(4,5) 374 local name = trim((data:sub(6))) 375 log("handlerFunction: data received SS tuner preset:" .. source .. ":tuner freq:" .. name ..":") 376 if (not tostring(source):find("^%s*$")) then 377 g_tuner[source] = name 378 debug(self.description .. ": Preset name: " .. source .. " Freq: _" .. name .. "_.") 379 end 380 end 381 if (data:sub(1,3) == "XPN") then 382 local source = data:sub(4,5) 383 local name = trim((data:sub(6))) 384 log("handlerFunction: data received SS XM preset:" .. source .. ":XM name:" .. name ..":") 385 if (not tostring(source):find("^%s*$")) then 386 g_xm[source] = name 387 debug(self.description .. ": Preset name: " .. source .. " XM Channel: _" .. name .. "_.") 388 end 389 end 390 return true 391 end 378 392 }, 379 393 … … 381 395 description = "Model number", 382 396 handlerFunc = function (self, data, msgZone) 383 384 385 386 387 388 397 if (data:sub(1,2) == "MO") then 398 local modelName = (data:sub(3)):gsub("(%s+)$", "") 399 luup.attr_set("model", modelName, avr_rec_dev) 400 end 401 return true 402 end 389 403 }, 390 404 … … 392 406 description = "zone names", 393 407 handlerFunc = function (self, data, msgZone) 394 395 396 397 398 399 400 401 402 403 408 data = trim(data) 409 local zone = tonumber(data:sub(2,2)) 410 local zonePrefix = data:sub(1,2) 411 local zoneName = trim(data:sub(3)) 412 zoneName = zoneName ~= '' and zoneName or zonePrefix 413 debug(self.description .. ": Zone Prefix:_" .. zonePrefix .. "_ Zone Name:_".. zoneName .. "_.") 414 g_zones[zone] = zoneName 415 --listTable(g_zones) 416 return true 417 end 404 418 }, 405 419 … … 407 421 description = "tuner frequency", 408 422 handlerFunc = function (self, data, msgZone) 409 410 411 412 413 414 423 data = trim(data) 424 local zonePrefix = data:sub(1,2) 425 local zoneName = trim(data:sub(3)) 426 debug(self.description .. ": Freq1:_" .. zonePrefix .. "_ Freq2:_".. zoneName .. "_.") 427 return true 428 end 415 429 }, 416 430 … … 418 432 description = "tuner mode", 419 433 handlerFunc = function (self, data, msgZone) 420 421 422 423 424 425 434 data = trim(data) 435 local zonePrefix = data:sub(1,2) 436 local zoneName = trim(data:sub(3)) 437 debug(self.description .. ": Mode1:_" .. zonePrefix .. "_ Mode2:_".. zoneName .. "_.") 438 return true 439 end 426 440 }, 427 441 … … 429 443 description = "tuner preset", 430 444 handlerFunc = function (self, data, msgZone) 431 432 433 434 435 436 445 data = trim(data) 446 local zonePrefix = data:sub(1,2) 447 local zoneName = trim(data:sub(3)) 448 debug(self.description .. ": Preset1:_" .. zonePrefix .. "_ Preset2:_".. zoneName .. "_.") 449 return true 450 end 437 451 } 438 452 … … 470 484 471 485 local function checkMessage (msg) 486 472 487 if (not msg or msg == "") then 473 488 log("checkMessage: ERROR: Empty message.") 474 489 return nil 475 490 end 491 476 492 end 477 493 478 494 ------------------------------------------------------------------------------------------ 479 495 function findZone (lul_device) 496 480 497 log("Trying to find zone for device: " .. lul_device) 481 498 local DeviceAltId = tostring(luup.devices[lul_device].id) … … 483 500 debug("DeviceID: " .. lul_device .. ", Parent:"..ParentDevice .. ", Zone: " .. DeviceAltId) 484 501 return DeviceAltId 502 485 503 end 486 504 ------------------------------------------------------------------------------------------ 487 505 local function setInitialParameters(avr_rec_dev) 488 506 489 490 491 492 493 494 495 507 luup.variable_set(DEN_SID,"Version",VERSION,avr_rec_dev) 508 AVRReceiverSendIntercept("MS?") 509 AVRReceiverSendIntercept("SI?") 510 AVRReceiverSendIntercept("SV?") 511 AVRReceiverSendIntercept("MU?") 512 AVRReceiverSendIntercept("ZM?") 513 AVRReceiverSendIntercept("MV?") 496 514 497 515 end … … 499 517 function findChild(label) 500 518 501 if(label == "ZM") then return avr_rec_dev end 502 503 for k, v in pairs(luup.devices) do 504 if(v.device_num_parent == avr_rec_dev and v.id == label) then 505 debug("findChild: " .. v.device_num_parent .. " " .. avr_rec_dev .. " " .. v.id .. " " .. label,1) 506 return k 507 end 508 end 509 510 return false 519 if(label == "ZM") then return avr_rec_dev end 520 521 for k, v in pairs(luup.devices) do 522 if(v.device_num_parent == avr_rec_dev and v.id == label) then 523 debug("findChild: " .. v.device_num_parent .. " " .. avr_rec_dev .. " " .. v.id .. " " .. label,1) 524 return k 525 end 526 end 527 528 return false 529 511 530 end 512 531 ------------------------------------------------------------------------------------------ 513 532 function processInterceptedMessage(command) 514 command = (command:sub(1,2) == "RR") and command:sub(1,1) or command:sub(1,2) 533 534 command = (command:sub(1,2) == "RR") and command:sub(1,1) or command:sub(1,2) 515 535 516 536 while true do 517 518 519 520 521 522 523 524 525 526 527 528 537 data = luup.io.read() 538 if (data ~= nil) then 539 local result = (data:sub(1,1) == 'R') and data:sub(1,1) or data:sub(1,2) 540 if (command ~= result) then 541 handleResponse(data) 542 luup.io.intercept() 543 else 544 return handleResponse(data) 545 end 546 end 547 end 548 return false 529 549 530 550 end 531 551 ------------------------------------------------------------------------------------------ 532 552 function AVRReceiverSendIntercept(command) 533 luup.sleep(200) 553 554 luup.sleep(200) 534 555 local dataSize = string.len(command) 535 556 assert(dataSize <= 135) … … 550 571 local function createZones(avr_rec_dev) 551 572 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 573 log("createZones: Starting") 574 575 child_devices = luup.chdev.start(avr_rec_dev) 576 577 local detected_model = luup.attr_get("model", avr_rec_dev) 578 local modelNumber = string.match(detected_model, "%d+") 579 local manual_zones = luup.variable_get(DEN_SID, "Zones", avr_rec_dev) 580 local zones = "" 581 582 if (not manual_zones or manual_zones == "") then 583 luup.variable_set(DEN_SID, "Zones", "", avr_rec_dev) 584 end 585 586 if(manual_zones == "") then 587 zones = (MODEL[modelNumber] ~= nil) and MODEL[modelNumber].zones or "" 588 else 589 zones = manual_zones or "" 590 end 591 592 local setupStatus = luup.variable_get(DEN_SID, "Setup", avr_rec_dev) or "" 593 if (setupStatus == "" or setupStatus == "0") then 594 luup.attr_set("name", (detected_model or "AVR") .. '_' ..(g_zones[1]), avr_rec_dev) 595 end 596 597 for zone_num in zones:gmatch("%d+") do 598 local autoName = g_zones[tonumber(zone_num)] 599 zoneName = (detected_model or 'AVR') .. '_' .. autoName 600 DEVICEFILE_DENON_AVR_CONTROL = luup.attr_get("device_file", avr_rec_dev) 601 luup.chdev.append(avr_rec_dev,child_devices, "Z" .. zone_num,zoneName,DEVICETYPE_DENON_AVR_CONTROL,DEVICEFILE_DENON_AVR_CONTROL,"I_DenonReceiver1.xml","",true) 602 debug("createZone: Zone number:" .. zone_num .. " Zone name:" .. zoneName .. ".",1) 603 end 583 604 584 605 luup.chdev.sync(avr_rec_dev,child_devices) 585 606 586 587 588 589 590 591 592 607 for k, v in pairs(luup.devices) do 608 if(v.device_num_parent == avr_rec_dev) then 609 AVRReceiverSendIntercept(v.id .. "?") 610 AVRReceiverSendIntercept(v.id .. "MU?") 611 debug("createZone: Device number:" .. k .. " Device name:" .. v.id .. ".",1) 612 end 613 end 593 614 594 615 return true … … 596 617 end 597 618 ------------------------------------------------------------------------------------------ 598 --misc599 ------------------------------------------------------------------------------------------600 local function miscSetup(avr_rec_dev)601 602 log("miscSetup: Starting")603 604 --[[605 if(modelNumber ~= "4520") then606 AVRReceiverSendIntercept("SSTPN ?") --preset info (tuner)607 AVRReceiverSendIntercept("SSXPN ?") --preset info (XM)608 end609 AVRReceiverSendIntercept("NSE") --Display info ASCII610 ]]--611 612 return true613 614 end615 ------------------------------------------------------------------------------------------616 619 --Connection Setup 617 620 ------------------------------------------------------------------------------------------ 618 621 local function connectionType() 619 local ip = luup.devices[avr_rec_dev].ip or "" 620 if (ip == "") then 621 log("connectionType: Running on Serial.") 622 else 623 local ipAddress, port = ip:match("^([^:]+):?(%d-)$") 624 if (ipAddress and ipAddress ~= "") then 625 if (not port or port == "") then 626 port = 23 627 else 628 port = tonumber(port, 10) 622 623 local ip = luup.devices[avr_rec_dev].ip or "" 624 if (ip == "") then 625 log("connectionType: Running on Serial.") 626 else 627 local ipAddress, port = ip:match("^([^:]+):?(%d-)$") 628 if (ipAddress and ipAddress ~= "") then 629 port = (not port or port == "") and 23 or tonumber(port, 10) 630 log("connectionType: ipAddress = "..(ipAddress or "nil")..", port = "..(port or "nil")..".") 631 luup.io.open(avr_rec_dev, ipAddress, port) 632 if( luup.io.is_connected(avr_rec_dev)==false ) then 633 return false 629 634 end 630 log("connectionType: ipAddress = "..(ipAddress or "nil")..", port = "..(port or "nil")..".") 631 luup.io.open(avr_rec_dev, ipAddress, port) 632 633 if( luup.io.is_connected(avr_rec_dev)==false ) then 634 return false 635 end 636 637 end 638 return true 639 end 635 end 636 return true 637 end 638 640 639 end 641 640 ------------------------------------------------------------------------------------------ … … 645 644 646 645 log(":AVR Plugin version " .. VERSION .. ".") 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 end 689 646 avr_rec_dev = lul_device 647 648 luup.attr_set("altid", "ZM", avr_rec_dev) 649 650 local cj = require("createJSON") 651 652 if (not connectionType()) then 653 return false, "Communications error", "AVR Receiver" 654 end 655 luup.set_failure(false, lul_device) 656 657 --Set initial power status 658 luup.variable_set(SWP_SID,SWP_STATUS,"0",avr_rec_dev) 659 660 --Returns power status. 661 if (not AVRReceiverSendIntercept("PW?")) then 662 return false, "Device not currently available", "AVR Receiver" 663 end 664 665 AVRReceiverSendIntercept("RR?") 666 AVRReceiverSendIntercept("SSFUN ?") 667 AVRReceiverSendIntercept("SYMO") 668 669 --main zone initial parameters 670 setInitialParameters(avr_rec_dev) 671 672 createZones(avr_rec_dev) 673 674 local setupStatus = luup.variable_get(DEN_SID, "Setup", avr_rec_dev) or "" 675 if (setupStatus == "" or setupStatus == "0") then 676 local status = cj.create_static_json(g_sourceName, avr_rec_dev) 677 if (status == true) then 678 luup.variable_set(DEN_SID, "Setup", "1", avr_rec_dev) 679 end 680 end 681 682 luup.register_handler("callbackHandler", "tuner") 683 luup.register_handler("callbackHandler", "xm") 684 685 return true, "Startup successful.", "AVR Receiver" 686 687 end 688
Note: See TracChangeset
for help on using the changeset viewer.