thebatfink

My own custom entities

Dec 7th, 2025 (edited)
42
0
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.99 KB | None | 0 0
  1. _vars:
  2. sonyauth: '8394'
  3. sonysystem: 'http://192.168.1.71/sony/system'
  4. sonyavcontent: 'http://192.168.1.71/sony/avContent'
  5. sonyaudio: 'http://192.168.1.71/sony/audio'
  6. sonyapp: 'http://192.168.1.71/sony/appControl'
  7. sonysimpleip: '192.168.1.71:20060'
  8. divaurl: 192.168.1.39:2210
  9.  
  10. SonyTV:
  11. Features:
  12. 'Off':
  13. Type: post
  14. Parameter:
  15. url: ${sonysystem}
  16. headers:
  17. Content-Type: application/json
  18. X-Auth-PSK: ${sonyauth}
  19. json:
  20. method: 'setPowerStatus'
  21. id: 55
  22. params:
  23. - status: False
  24. version: '1.0'
  25. 'On':
  26. Type: post
  27. Parameter:
  28. url: ${sonysystem}
  29. headers:
  30. Content-Type: application/json
  31. X-Auth-PSK: ${sonyauth}
  32. json:
  33. method: 'setPowerStatus'
  34. id: 55
  35. params:
  36. - status: True
  37. version: '1.0'
  38. Toggle:
  39. Type: post
  40. Parameter:
  41. url: ${sonysystem}
  42. headers:
  43. Content-Type: application/json
  44. X-Auth-PSK: ${sonyauth}
  45. json:
  46. method: 'setPowerStatus'
  47. id: 55
  48. params:
  49. - status: False
  50. version: '1.0'
  51. Simple Commands:
  52. HDMI_INPUT_1:
  53. Type: post
  54. Parameter:
  55. url: ${sonyavcontent}
  56. headers:
  57. Content-Type: application/json
  58. X-Auth-PSK: ${sonyauth}
  59. json:
  60. method: 'setPlayContent'
  61. id: 101
  62. params:
  63. - uri: 'extInput:hdmi?port=1'
  64. version: '1.0'
  65. HDMI_INPUT_2:
  66. Type: post
  67. Parameter:
  68. url: ${sonyavcontent}
  69. headers:
  70. Content-Type: application/json
  71. X-Auth-PSK: ${sonyauth}
  72. json:
  73. method: 'setPlayContent'
  74. id: 101
  75. params:
  76. - uri: 'extInput:hdmi?port=2'
  77. version: '1.0'
  78. HDMI_INPUT_3:
  79. Type: post
  80. Parameter:
  81. url: ${sonyavcontent}
  82. headers:
  83. Content-Type: application/json
  84. X-Auth-PSK: ${sonyauth}
  85. json:
  86. method: 'setPlayContent'
  87. id: 101
  88. params:
  89. - uri: 'extInput:hdmi?port=3'
  90. version: '1.0'
  91. HDMI_INPUT_4:
  92. Type: post
  93. Parameter:
  94. url: ${sonyavcontent}
  95. headers:
  96. Content-Type: application/json
  97. X-Auth-PSK: ${sonyauth}
  98. json:
  99. method: 'setPlayContent'
  100. id: 101
  101. params:
  102. - uri: 'extInput:hdmi?port=4'
  103. version: '1.0'
  104. COMP_INPUT_1:
  105. Type: post
  106. Parameter:
  107. url: ${sonyavcontent}
  108. headers:
  109. Content-Type: application/json
  110. X-Auth-PSK: ${sonyauth}
  111. json:
  112. method: 'setPlayContent'
  113. id: 101
  114. params:
  115. - uri: 'extInput:composite?port=1'
  116. version: '1.0'
  117. SCREEN_MIRROR:
  118. Type: post
  119. Parameter:
  120. url: ${sonyavcontent}
  121. headers:
  122. Content-Type: application/json
  123. X-Auth-PSK: ${sonyauth}
  124. json:
  125. method: 'setPlayContent'
  126. id: 101
  127. params:
  128. - uri: 'extInput:widi?port=1'
  129. version: '1.0'
  130. VOLUME_UP:
  131. Type: post
  132. Parameter:
  133. url: ${sonyaudio}
  134. headers:
  135. Content-Type: application/json
  136. X-Auth-PSK: ${sonyauth}
  137. json:
  138. method: 'setAudioVolume'
  139. id: 98
  140. params:
  141. - target: ""
  142. volume: "+1"
  143. ui: "on"
  144. version: '1.2'
  145. VOLUME_DOWN:
  146. Type: post
  147. Parameter:
  148. url: ${sonyaudio}
  149. headers:
  150. Content-Type: application/json
  151. X-Auth-PSK: ${sonyauth}
  152. json:
  153. method: 'setAudioVolume'
  154. id: 98
  155. params:
  156. - target: ""
  157. volume: "-1"
  158. ui: "on"
  159. version: '1.2'
  160. VOLUME_UP_SPEAKER:
  161. Type: post
  162. Parameter:
  163. url: ${sonyaudio}
  164. headers:
  165. Content-Type: application/json
  166. X-Auth-PSK: ${sonyauth}
  167. json:
  168. method: 'setAudioVolume'
  169. id: 98
  170. params:
  171. - target: "speaker"
  172. volume: "+1"
  173. ui: "on"
  174. version: '1.2'
  175. VOLUME_DOWN_SPEAKER:
  176. Type: post
  177. Parameter:
  178. url: ${sonyaudio}
  179. headers:
  180. Content-Type: application/json
  181. X-Auth-PSK: ${sonyauth}
  182. json:
  183. method: 'setAudioVolume'
  184. id: 98
  185. params:
  186. - target: "speaker"
  187. volume: "-1"
  188. ui: "on"
  189. version: '1.2'
  190. MUTE:
  191. Type: post
  192. Parameter:
  193. url: ${sonyaudio}
  194. headers:
  195. Content-Type: application/json
  196. X-Auth-PSK: ${sonyauth}
  197. json:
  198. method: 'setAudioMute'
  199. id: 601
  200. params:
  201. - status: True
  202. version: '1.0'
  203. UNMUTE:
  204. Type: post
  205. Parameter:
  206. url: ${sonyaudio}
  207. headers:
  208. Content-Type: application/json
  209. X-Auth-PSK: ${sonyauth}
  210. json:
  211. method: 'setAudioMute'
  212. id: 601
  213. params:
  214. - status: False
  215. version: '1.0'
  216. DISPLAY:
  217. Type: tcp-text
  218. Parameter:
  219. address: ${sonysimpleip}
  220. text: '*SCIRCC0000000000000005\n'
  221. HOME:
  222. Type: tcp-text
  223. Parameter:
  224. address: ${sonysimpleip}
  225. text: '*SCIRCC0000000000000006\n'
  226. OPTIONS:
  227. Type: tcp-text
  228. Parameter:
  229. address: ${sonysimpleip}
  230. text: '*SCIRCC0000000000000007\n'
  231. RETURN:
  232. Type: tcp-text
  233. Parameter:
  234. address: ${sonysimpleip}
  235. text: '*SCIRCC0000000000000008\n'
  236. UP:
  237. Type: tcp-text
  238. Parameter:
  239. address: ${sonysimpleip}
  240. text: '*SCIRCC0000000000000009\n'
  241. DOWN:
  242. Type: tcp-text
  243. Parameter:
  244. address: ${sonysimpleip}
  245. text: '*SCIRCC0000000000000010\n'
  246. RIGHT:
  247. Type: tcp-text
  248. Parameter:
  249. address: ${sonysimpleip}
  250. text: '*SCIRCC0000000000000011\n'
  251. LEFT:
  252. Type: tcp-text
  253. Parameter:
  254. address: ${sonysimpleip}
  255. text: '*SCIRCC0000000000000012\n'
  256. CONFIRM:
  257. Type: tcp-text
  258. Parameter:
  259. address: ${sonysimpleip}
  260. text: '*SCIRCC0000000000000013\n'
  261. RED:
  262. Type: tcp-text
  263. Parameter:
  264. address: ${sonysimpleip}
  265. text: '*SCIRCC0000000000000014\n'
  266. GREEN:
  267. Type: tcp-text
  268. Parameter:
  269. address: ${sonysimpleip}
  270. text: '*SCIRCC0000000000000015\n'
  271. YELLOW:
  272. Type: tcp-text
  273. Parameter:
  274. address: ${sonysimpleip}
  275. text: '*SCIRCC0000000000000016\n'
  276. BLUE:
  277. Type: tcp-text
  278. Parameter:
  279. address: ${sonysimpleip}
  280. text: '*SCIRCC0000000000000017\n'
  281. NUM1:
  282. Type: tcp-text
  283. Parameter:
  284. address: ${sonysimpleip}
  285. text: '*SCIRCC0000000000000018\n'
  286. NUM2:
  287. Type: tcp-text
  288. Parameter:
  289. address: ${sonysimpleip}
  290. text: '*SCIRCC0000000000000019\n'
  291. NUM3:
  292. Type: tcp-text
  293. Parameter:
  294. address: ${sonysimpleip}
  295. text: '*SCIRCC0000000000000020\n'
  296. NUM4:
  297. Type: tcp-text
  298. Parameter:
  299. address: ${sonysimpleip}
  300. text: '*SCIRCC0000000000000021\n'
  301. NUM5:
  302. Type: tcp-text
  303. Parameter:
  304. address: ${sonysimpleip}
  305. text: '*SCIRCC0000000000000022\n'
  306. NUM6:
  307. Type: tcp-text
  308. Parameter:
  309. address: ${sonysimpleip}
  310. text: '*SCIRCC0000000000000023\n'
  311. NUM7:
  312. Type: tcp-text
  313. Parameter:
  314. address: ${sonysimpleip}
  315. text: '*SCIRCC0000000000000024\n'
  316. NUM8:
  317. Type: tcp-text
  318. Parameter:
  319. address: ${sonysimpleip}
  320. text: '*SCIRCC0000000000000025\n'
  321. NUM9:
  322. Type: tcp-text
  323. Parameter:
  324. address: ${sonysimpleip}
  325. text: '*SCIRCC0000000000000026\n'
  326. NUM0:
  327. Type: tcp-text
  328. Parameter:
  329. address: ${sonysimpleip}
  330. text: '*SCIRCC0000000000000027\n'
  331. VOLUMEUP:
  332. Type: tcp-text
  333. Parameter:
  334. address: ${sonysimpleip}
  335. text: '*SCIRCC0000000000000030\n'
  336. VOLUMEDOWN:
  337. Type: tcp-text
  338. Parameter:
  339. address: ${sonysimpleip}
  340. text: '*SCIRCC0000000000000031\n'
  341. VOLUMEMUTE:
  342. Type: tcp-text
  343. Parameter:
  344. address: ${sonysimpleip}
  345. text: '*SCIRCC0000000000000032\n'
  346. CHANNEL_UP:
  347. Type: tcp-text
  348. Parameter:
  349. address: ${sonysimpleip}
  350. text: '*SCIRCC0000000000000033\n'
  351. CHANNEL_DOWN:
  352. Type: tcp-text
  353. Parameter:
  354. address: ${sonysimpleip}
  355. text: '*SCIRCC0000000000000034\n'
  356. SUBTITLE:
  357. Type: tcp-text
  358. Parameter:
  359. address: ${sonysimpleip}
  360. text: '*SCIRCC0000000000000035\n'
  361. DOT:
  362. Type: tcp-text
  363. Parameter:
  364. address: ${sonysimpleip}
  365. text: '*SCIRCC0000000000000036\n'
  366. PICTURE_OFF:
  367. Type: tcp-text
  368. Parameter:
  369. address: ${sonysimpleip}
  370. text: '*SCIRCC0000000000000038\n'
  371. WIDE:
  372. Type: tcp-text
  373. Parameter:
  374. address: ${sonysimpleip}
  375. text: '*SCIRCC0000000000000050\n'
  376. JUMP:
  377. Type: tcp-text
  378. Parameter:
  379. address: ${sonysimpleip}
  380. text: '*SCIRCC0000000000000061\n'
  381. SYNC_MENU:
  382. Type: tcp-text
  383. Parameter:
  384. address: ${sonysimpleip}
  385. text: '*SCIRCC0000000000000062\n'
  386. FORWARD:
  387. Type: tcp-text
  388. Parameter:
  389. address: ${sonysimpleip}
  390. text: '*SCIRCC0000000000000076\n'
  391. PLAY:
  392. Type: tcp-text
  393. Parameter:
  394. address: ${sonysimpleip}
  395. text: '*SCIRCC0000000000000077\n'
  396. REWIND:
  397. Type: tcp-text
  398. Parameter:
  399. address: ${sonysimpleip}
  400. text: '*SCIRCC0000000000000078\n'
  401. PREV:
  402. Type: tcp-text
  403. Parameter:
  404. address: ${sonysimpleip}
  405. text: '*SCIRCC0000000000000079\n'
  406. STOP:
  407. Type: tcp-text
  408. Parameter:
  409. address: ${sonysimpleip}
  410. text: '*SCIRCC0000000000000080\n'
  411. NEXT:
  412. Type: tcp-text
  413. Parameter:
  414. address: ${sonysimpleip}
  415. text: '*SCIRCC0000000000000081\n'
  416. PAUSE:
  417. Type: tcp-text
  418. Parameter:
  419. address: ${sonysimpleip}
  420. text: '*SCIRCC0000000000000082\n'
  421. FLASH_PLUS:
  422. Type: tcp-text
  423. Parameter:
  424. address: ${sonysimpleip}
  425. text: '*SCIRCC0000000000000084\n'
  426. FLASH_MINUS:
  427. Type: tcp-text
  428. Parameter:
  429. address: ${sonysimpleip}
  430. text: '*SCIRCC0000000000000086\n'
  431. TV_POWER:
  432. Type: tcp-text
  433. Parameter:
  434. address: ${sonysimpleip}
  435. text: '*SCIRCC0000000000000087\n'
  436. AUDIO:
  437. Type: tcp-text
  438. Parameter:
  439. address: ${sonysimpleip}
  440. text: '*SCIRCC0000000000000098\n'
  441. INPUT:
  442. Type: tcp-text
  443. Parameter:
  444. address: ${sonysimpleip}
  445. text: '*SCIRCC0000000000000099\n'
  446. SLEEP:
  447. Type: tcp-text
  448. Parameter:
  449. address: ${sonysimpleip}
  450. text: '*SCIRCC0000000000000101\n'
  451. SLEEP_TIMER:
  452. Type: tcp-text
  453. Parameter:
  454. address: ${sonysimpleip}
  455. text: '*SCIRCC0000000000000104\n'
  456. VIDEO_2:
  457. Type: tcp-text
  458. Parameter:
  459. address: ${sonysimpleip}
  460. text: '*SCIRCC0000000000000105\n'
  461. PICTURE_MODE:
  462. Type: tcp-text
  463. Parameter:
  464. address: ${sonysimpleip}
  465. text: '*SCIRCC0000000000000108\n'
  466. DEMO_SURROUND:
  467. Type: tcp-text
  468. Parameter:
  469. address: ${sonysimpleip}
  470. text: '*SCIRCC0000000000000110\n'
  471. HDMI_1:
  472. Type: tcp-text
  473. Parameter:
  474. address: ${sonysimpleip}
  475. text: '*SCIRCC0000000000000121\n'
  476. HDMI_2:
  477. Type: tcp-text
  478. Parameter:
  479. address: ${sonysimpleip}
  480. text: '*SCIRCC0000000000000124\n'
  481. HDMI_3:
  482. Type: tcp-text
  483. Parameter:
  484. address: ${sonysimpleip}
  485. text: '*SCIRCC0000000000000125\n'
  486. HDMI_4:
  487. Type: tcp-text
  488. Parameter:
  489. address: ${sonysimpleip}
  490. text: '*SCIRCC0000000000000126\n'
  491. ACTION_MENU:
  492. Type: tcp-text
  493. Parameter:
  494. address: ${sonysimpleip}
  495. text: '*SCIRCC0000000000000127\n'
  496. HELP:
  497. Type: tcp-text
  498. Parameter:
  499. address: ${sonysimpleip}
  500. text: '*SCIRCC0000000000000129\n'
  501. LED_OFF:
  502. Type: post
  503. Parameter:
  504. url: ${sonysystem}
  505. headers:
  506. Content-Type: application/json
  507. X-Auth-PSK: ${sonyauth}
  508. json:
  509. method: 'setLEDIndicatorStatus'
  510. id: 53
  511. params:
  512. - mode: 'Off'
  513. status: 'false'
  514. version: '1.1'
  515. LED_ON_AUTO:
  516. Type: post
  517. Parameter:
  518. url: ${sonysystem}
  519. headers:
  520. Content-Type: application/json
  521. X-Auth-PSK: ${sonyauth}
  522. json:
  523. method: 'setLEDIndicatorStatus'
  524. id: 53
  525. params:
  526. - mode: 'AutoBrightnessAdjust'
  527. status: 'true'
  528. version: '1.1'
  529. LED_ON_DEMO:
  530. Type: post
  531. Parameter:
  532. url: ${sonysystem}
  533. headers:
  534. Content-Type: application/json
  535. X-Auth-PSK: ${sonyauth}
  536. json:
  537. method: 'setLEDIndicatorStatus'
  538. id: 53
  539. params:
  540. - mode: 'Demo'
  541. status: 'true'
  542. version: '1.1'
  543. LED_ON_DARK:
  544. Type: post
  545. Parameter:
  546. url: ${sonysystem}
  547. headers:
  548. Content-Type: application/json
  549. X-Auth-PSK: ${sonyauth}
  550. json:
  551. method: 'setLEDIndicatorStatus'
  552. id: 53
  553. params:
  554. - mode: 'Dark'
  555. status: 'true'
  556. version: '1.1'
  557. LED_ON_SIMPLE:
  558. Type: post
  559. Parameter:
  560. url: ${sonysystem}
  561. headers:
  562. Content-Type: application/json
  563. X-Auth-PSK: ${sonyauth}
  564. json:
  565. method: 'setLEDIndicatorStatus'
  566. id: 53
  567. params:
  568. - mode: 'SimpleResponse'
  569. status: 'true'
  570. version: '1.1'
  571. APP_BBCIPLAYER:
  572. Type: post
  573. Parameter:
  574. url: ${sonyapp}
  575. headers:
  576. Content-Type: application/json
  577. X-Auth-PSK: ${sonyauth}
  578. json:
  579. method: 'setActiveApp'
  580. id: 601
  581. params:
  582. - uri: 'com.sony.dtv.sonyselect-iPlayer'
  583. version: '1.0'
  584. APP_ITVX:
  585. Type: post
  586. Parameter:
  587. url: ${sonyapp}
  588. headers:
  589. Content-Type: application/json
  590. X-Auth-PSK: ${sonyauth}
  591. json:
  592. method: 'setActiveApp'
  593. id: 601
  594. params:
  595. - uri: 'com.sony.dtv.sonyselect-com.sony.dtv.youview.itv'
  596. version: '1.0'
  597. APP_ITVX2:
  598. Type: post
  599. Parameter:
  600. url: ${sonyapp}
  601. headers:
  602. Content-Type: application/json
  603. X-Auth-PSK: ${sonyauth}
  604. json:
  605. method: 'setActiveApp'
  606. id: 601
  607. params:
  608. - uri: 'com.sony.dtv.com.sony.dtv.itvlauncher.com.sony.dtv.itvlauncher.MainActivity'
  609. version: '1.0'
  610. APP_CHANNEL4:
  611. Type: post
  612. Parameter:
  613. url: ${sonyapp}
  614. headers:
  615. Content-Type: application/json
  616. X-Auth-PSK: ${sonyauth}
  617. json:
  618. method: 'setActiveApp'
  619. id: 601
  620. params:
  621. - uri: 'com.sony.dtv.sonyselect-com.sony.dtv.youview.channel4'
  622. version: '1.0'
  623. APP_5:
  624. Type: post
  625. Parameter:
  626. url: ${sonyapp}
  627. headers:
  628. Content-Type: application/json
  629. X-Auth-PSK: ${sonyauth}
  630. json:
  631. method: 'setActiveApp'
  632. id: 601
  633. params:
  634. - uri: 'com.sony.dtv.sonyselect-channel5.youview'
  635. version: '1.0'
  636. APP_YOUVIEW:
  637. Type: post
  638. Parameter:
  639. url: ${sonyapp}
  640. headers:
  641. Content-Type: application/json
  642. X-Auth-PSK: ${sonyauth}
  643. json:
  644. method: 'setActiveApp'
  645. id: 601
  646. params:
  647. - uri: 'com.sony.dtv.sonyselect-com.sony.dtv.youview'
  648. version: '1.0'
  649. APP_BBCSOUNDS:
  650. Type: post
  651. Parameter:
  652. url: ${sonyapp}
  653. headers:
  654. Content-Type: application/json
  655. X-Auth-PSK: ${sonyauth}
  656. json:
  657. method: 'setActiveApp'
  658. id: 601
  659. params:
  660. - uri: 'com.sony.dtv.sonyselect-bbs_sounds'
  661. version: '1.0'
  662. APP_RAKUTENTV:
  663. Type: post
  664. Parameter:
  665. url: ${sonyapp}
  666. headers:
  667. Content-Type: application/json
  668. X-Auth-PSK: ${sonyauth}
  669. json:
  670. method: 'setActiveApp'
  671. id: 601
  672. params:
  673. - uri: 'com.sony.dtv.sonyselect-ES-WUAKI_NBIV'
  674. version: '1.0'
  675. APP_TVGUIDE:
  676. Type: post
  677. Parameter:
  678. url: ${sonyapp}
  679. headers:
  680. Content-Type: application/json
  681. X-Auth-PSK: ${sonyauth}
  682. json:
  683. method: 'setActiveApp'
  684. id: 601
  685. params:
  686. - uri: 'com.sony.dtv.com.sony.dtv.tvxlauncher.programguide.com.sony.dtv.tvxlauncher.programguide.MainActivity'
  687. version: '1.0'
  688. APP_TV:
  689. Type: post
  690. Parameter:
  691. url: ${sonyapp}
  692. headers:
  693. Content-Type: application/json
  694. X-Auth-PSK: ${sonyauth}
  695. json:
  696. method: 'setActiveApp'
  697. id: 601
  698. params:
  699. - uri: 'com.sony.dtv.com.sony.dtv.tvx.com.sony.dtv.tvx.MainActivity'
  700. version: '1.0'
  701. APP_RECORDEDLIST:
  702. Type: post
  703. Parameter:
  704. url: ${sonyapp}
  705. headers:
  706. Content-Type: application/json
  707. X-Auth-PSK: ${sonyauth}
  708. json:
  709. method: 'setActiveApp'
  710. id: 601
  711. params:
  712. - uri: 'com.sony.dtv.com.sony.dtv.tvxlauncher.titlelist.com.sony.dtv.tvxlauncher.titlelist.MainActivity'
  713. version: '1.0'
  714. APP_DISNEY:
  715. Type: post
  716. Parameter:
  717. url: ${sonyapp}
  718. headers:
  719. Content-Type: application/json
  720. X-Auth-PSK: ${sonyauth}
  721. json:
  722. method: 'setActiveApp'
  723. id: 601
  724. params:
  725. - uri: 'com.sony.dtv.com.disney.disneyplus.com.bamtechmedia.dominguez.main.MainActivity'
  726. version: '1.0'
  727. APP_APPLETV:
  728. Type: post
  729. Parameter:
  730. url: ${sonyapp}
  731. headers:
  732. Content-Type: application/json
  733. X-Auth-PSK: ${sonyauth}
  734. json:
  735. method: 'setActiveApp'
  736. id: 601
  737. params:
  738. - uri: 'com.sony.dtv.com.apple.atve.androidtv.appletv.com.apple.atve.androidtv.appletv.MainActivity'
  739. version: '1.0'
  740. APP_NETFLIX:
  741. Type: post
  742. Parameter:
  743. url: ${sonyapp}
  744. headers:
  745. Content-Type: application/json
  746. X-Auth-PSK: ${sonyauth}
  747. json:
  748. method: 'setActiveApp'
  749. id: 601
  750. params:
  751. - uri: 'com.sony.dtv.com.netflix.ninja.com.netflix.ninja.MainActivity'
  752. version: '1.0'
  753. APP_SONYSELECT:
  754. Type: post
  755. Parameter:
  756. url: ${sonyapp}
  757. headers:
  758. Content-Type: application/json
  759. X-Auth-PSK: ${sonyauth}
  760. json:
  761. method: 'setActiveApp'
  762. id: 601
  763. params:
  764. - uri: 'com.sony.dtv.com.sony.dtv.sonyselect.com.sony.dtv.sonyselect.activities.LaunchActivity'
  765. version: '1.0'
  766. APP_TIMERS:
  767. Type: post
  768. Parameter:
  769. url: ${sonyapp}
  770. headers:
  771. Content-Type: application/json
  772. X-Auth-PSK: ${sonyauth}
  773. json:
  774. method: 'setActiveApp'
  775. id: 601
  776. params:
  777. - uri: 'com.sony.dtv.com.sony.dtv.timers.com.sony.dtv.activity.TimersMainActivity'
  778. version: '1.0'
  779. APP_INTERNETBROWSE:
  780. Type: post
  781. Parameter:
  782. url: ${sonyapp}
  783. headers:
  784. Content-Type: application/json
  785. X-Auth-PSK: ${sonyauth}
  786. json:
  787. method: 'setActiveApp'
  788. id: 601
  789. params:
  790. - uri: 'com.sony.dtv.com.vewd.core.integration.dia.com.vewd.core.integration.dia.SonyBrowserUiActivity'
  791. version: '1.0'
  792. APP_PLAYGAMES:
  793. Type: post
  794. Parameter:
  795. url: ${sonyapp}
  796. headers:
  797. Content-Type: application/json
  798. X-Auth-PSK: ${sonyauth}
  799. json:
  800. method: 'setActiveApp'
  801. id: 601
  802. params:
  803. - uri: 'com.sony.dtv.com.google.android.play.games.com.google.android.apps.play.games.app.atv.features.home.HomeActivity'
  804. version: '1.0'
  805. APP_PLAYMOVIES:
  806. Type: post
  807. Parameter:
  808. url: ${sonyapp}
  809. headers:
  810. Content-Type: application/json
  811. X-Auth-PSK: ${sonyauth}
  812. json:
  813. method: 'setActiveApp'
  814. id: 601
  815. params:
  816. - uri: 'com.sony.dtv.com.google.android.videos.com.google.android.videos.tv.presenter.activity.TvLauncherActivity'
  817. version: '1.0'
  818. APP_PLAYMUSIC:
  819. Type: post
  820. Parameter:
  821. url: ${sonyapp}
  822. headers:
  823. Content-Type: application/json
  824. X-Auth-PSK: ${sonyauth}
  825. json:
  826. method: 'setActiveApp'
  827. id: 601
  828. params:
  829. - uri: 'com.sony.dtv.com.google.android.music.com.google.android.music.tv.HomeActivity'
  830. version: '1.0'
  831. APP_MYBRAVIA:
  832. Type: post
  833. Parameter:
  834. url: ${sonyapp}
  835. headers:
  836. Content-Type: application/json
  837. X-Auth-PSK: ${sonyauth}
  838. json:
  839. method: 'setActiveApp'
  840. id: 601
  841. params:
  842. - uri: 'com.sony.dtv.com.sony.dtv.promos.com.sony.dtv.promos.MainActivity'
  843. version: '1.0'
  844. APP_PRIMEVIDEO:
  845. Type: post
  846. Parameter:
  847. url: ${sonyapp}
  848. headers:
  849. Content-Type: application/json
  850. X-Auth-PSK: ${sonyauth}
  851. json:
  852. method: 'setActiveApp'
  853. id: 601
  854. params:
  855. - uri: 'com.sony.dtv.com.amazon.amazonvideo.livingroom.com.amazon.ignition.IgnitionActivity'
  856. version: '1.0'
  857. APP_PLAYSTORE:
  858. Type: post
  859. Parameter:
  860. url: ${sonyapp}
  861. headers:
  862. Content-Type: application/json
  863. X-Auth-PSK: ${sonyauth}
  864. json:
  865. method: 'setActiveApp'
  866. id: 601
  867. params:
  868. - uri: 'com.sony.dtv.com.android.vending.com.google.android.finsky.tvmainactivity.TvMainActivity'
  869. version: '1.0'
  870. APP_MUSIC:
  871. Type: post
  872. Parameter:
  873. url: ${sonyapp}
  874. headers:
  875. Content-Type: application/json
  876. X-Auth-PSK: ${sonyauth}
  877. json:
  878. method: 'setActiveApp'
  879. id: 601
  880. params:
  881. - uri: 'com.sony.dtv.com.sony.dtv.osat.music.com.sonyericsson.music.MusicActivity'
  882. version: '1.0'
  883. APP_YOUTUBE:
  884. Type: post
  885. Parameter:
  886. url: ${sonyapp}
  887. headers:
  888. Content-Type: application/json
  889. X-Auth-PSK: ${sonyauth}
  890. json:
  891. method: 'setActiveApp'
  892. id: 601
  893. params:
  894. - uri: 'com.sony.dtv.com.google.android.youtube.tv.com.google.android.apps.youtube.tv.activity.ShellActivity'
  895. version: '1.0'
  896. APP_YOUTUBEMUSIC:
  897. Type: post
  898. Parameter:
  899. url: ${sonyapp}
  900. headers:
  901. Content-Type: application/json
  902. X-Auth-PSK: ${sonyauth}
  903. json:
  904. method: 'setActiveApp'
  905. id: 601
  906. params:
  907. - uri: 'com.sony.dtv.com.google.android.youtube.tvmusic.com.google.android.apps.youtube.tvmusic.activity.MainActivity'
  908. version: '1.0'
  909. APP_HELP:
  910. Type: post
  911. Parameter:
  912. url: ${sonyapp}
  913. headers:
  914. Content-Type: application/json
  915. X-Auth-PSK: ${sonyauth}
  916. json:
  917. method: 'setActiveApp'
  918. id: 601
  919. params:
  920. - uri: 'com.sony.dtv.com.sony.dtv.smarthelp.com.sony.dtv.smarthelp.activity.MainActivity'
  921. version: '1.0'
  922. WOL_ON:
  923. Type: post
  924. Parameter:
  925. url: ${sonysystem}
  926. headers:
  927. Content-Type: application/json
  928. X-Auth-PSK: ${sonyauth}
  929. json:
  930. method: 'setWolMode'
  931. id: 55
  932. params:
  933. - enabled: True
  934. version: '1.0'
  935. WOL_OFF:
  936. Type: post
  937. Parameter:
  938. url: ${sonysystem}
  939. headers:
  940. Content-Type: application/json
  941. X-Auth-PSK: ${sonyauth}
  942. json:
  943. method: 'setWolMode'
  944. id: 55
  945. params:
  946. - enabled: False
  947. version: '1.0'
  948. AUDIO_SPEAKER:
  949. Type: post
  950. Parameter:
  951. url: ${sonyaudio}
  952. headers:
  953. Content-Type: application/json
  954. X-Auth-PSK: ${sonyauth}
  955. json:
  956. method: 'setSoundSettings'
  957. id: 5
  958. params:
  959. - value: 'speaker'
  960. target: 'outputTerminal'
  961. version: '1.1'
  962. AUDIO_SPEAKER_HDMI:
  963. Type: post
  964. Parameter:
  965. url: ${sonyaudio}
  966. headers:
  967. Content-Type: application/json
  968. X-Auth-PSK: ${sonyauth}
  969. json:
  970. method: 'setSoundSettings'
  971. id: 5
  972. params:
  973. - value: 'speaker_hdmi'
  974. target: 'outputTerminal'
  975. version: '1.1'
  976. AUDIO_HDMI:
  977. Type: post
  978. Parameter:
  979. url: ${sonyaudio}
  980. headers:
  981. Content-Type: application/json
  982. X-Auth-PSK: ${sonyauth}
  983. json:
  984. method: 'setSoundSettings'
  985. id: 5
  986. params:
  987. - value: 'hdmi'
  988. target: 'outputTerminal'
  989. version: '1.1'
  990. AUDIO_AUDIOSYSTEM:
  991. Type: post
  992. Parameter:
  993. url: ${sonyaudio}
  994. headers:
  995. Content-Type: application/json
  996. X-Auth-PSK: ${sonyauth}
  997. json:
  998. method: 'setSoundSettings'
  999. id: 5
  1000. params:
  1001. - value: 'audioSystem'
  1002. target: 'outputTerminal'
  1003. version: '1.1'
  1004.  
  1005. HDFuryDiva_IP:
  1006. Features:
  1007. 'Off':
  1008. Type: tcp-text
  1009. Parameter:
  1010. address: ${divaurl}
  1011. text: 'set oled off\n'
  1012. 'On':
  1013. Type: tcp-text
  1014. Parameter:
  1015. address: ${divaurl}
  1016. text: 'set oled off\n'
  1017. Toggle:
  1018. Type: tcp-text
  1019. Parameter:
  1020. address: ${divaurl}
  1021. text: 'set oled off\n'
  1022. Simple Commands:
  1023. TX0_INPUT_0:
  1024. Type: tcp-text
  1025. Parameter:
  1026. address: ${divaurl}
  1027. text: 'set inseltx0 0\n'
  1028. TX0_INPUT_1:
  1029. Type: tcp-text
  1030. Parameter:
  1031. address: ${divaurl}
  1032. text: 'set inseltx0 1\n'
  1033. TX0_INPUT_2:
  1034. Type: tcp-text
  1035. Parameter:
  1036. address: ${divaurl}
  1037. text: 'set inseltx0 2\n'
  1038. TX0_INPUT_3:
  1039. Type: tcp-text
  1040. Parameter:
  1041. address: ${divaurl}
  1042. text: 'set inseltx0 3\n'
  1043. AMBILIGHT_VIDEO:
  1044. Type: tcp-text
  1045. Parameter:
  1046. address: ${divaurl}
  1047. text: 'set ledprofilevideo 1\n'
  1048. AMBILIGHT_OFF:
  1049. Type: tcp-text
  1050. Parameter:
  1051. address: ${divaurl}
  1052. text: 'set ledprofilevideo 0\n'
  1053. AMBILIGHT_ROTATING:
  1054. Type: tcp-text
  1055. Parameter:
  1056. address: ${divaurl}
  1057. text: 'set ledprofilevideo 5\n'
  1058. AMBILIGHT_STATIC:
  1059. Type: tcp-text
  1060. Parameter:
  1061. address: ${divaurl}
  1062. text: 'set ledprofilevideo 2\n'
  1063. AMBILIGHT_BLINK:
  1064. Type: tcp-text
  1065. Parameter:
  1066. address: ${divaurl}
  1067. text: 'set ledprofilevideo 3\n'
  1068. AMBILIGHT_PULSE:
  1069. Type: tcp-text
  1070. Parameter:
  1071. address: ${divaurl}
  1072. text: 'set ledprofilevideo 4\n'
  1073. AMBILIGHT_GAMMA_2_2:
  1074. Type: tcp-text
  1075. Parameter:
  1076. address: ${divaurl}
  1077. text: 'set ledgamma 0\n'
  1078. AMBILIGHT_GAMMA_2_0:
  1079. Type: tcp-text
  1080. Parameter:
  1081. address: ${divaurl}
  1082. text: 'set ledgamma 1\n'
  1083. AMBILIGHT_GAMMA_1_8:
  1084. Type: tcp-text
  1085. Parameter:
  1086. address: ${divaurl}
  1087. text: 'set ledgamma 2\n'
  1088. AMBILIGHT_GAMMA_1_6:
  1089. Type: tcp-text
  1090. Parameter:
  1091. address: ${divaurl}
  1092. text: 'set ledgamma 3\n'
  1093. AMBILIGHT_SYNC_VIDEO:
  1094. Type: tcp-text
  1095. Parameter:
  1096. address: ${divaurl}
  1097. text: 'set ledprofilesync 1\n'
  1098. AMBILIGHT_SYNC_OFF:
  1099. Type: tcp-text
  1100. Parameter:
  1101. address: ${divaurl}
  1102. text: 'set ledprofilesync 0\n'
  1103. AMBILIGHT_SYNC_ROTATING:
  1104. Type: tcp-text
  1105. Parameter:
  1106. address: ${divaurl}
  1107. text: 'set ledprofilesync 5\n'
  1108. AMBILIGHT_SYNC_STATIC:
  1109. Type: tcp-text
  1110. Parameter:
  1111. address: ${divaurl}
  1112. text: 'set ledprofilesync 2\n'
  1113. AMBILIGHT_SYNC_BLINK:
  1114. Type: tcp-text
  1115. Parameter:
  1116. address: ${divaurl}
  1117. text: 'set ledprofilesync 3\n'
  1118. AMBILIGHT_SYNC_PULSE:
  1119. Type: tcp-text
  1120. Parameter:
  1121. address: ${divaurl}
  1122. text: 'set ledprofilesync 4\n'
  1123. AUTOSWITCH_ON:
  1124. Type: tcp-text
  1125. Parameter:
  1126. address: ${divaurl}
  1127. text: 'set autosw on\n'
  1128. AUTOSWITCH_OFF:
  1129. Type: tcp-text
  1130. Parameter:
  1131. address: ${divaurl}
  1132. text: 'set autosw off\n'
  1133. AUTOSWITCHPRIORITY_ON:
  1134. Type: tcp-text
  1135. Parameter:
  1136. address: ${divaurl}
  1137. text: 'set autoswprio on\n'
  1138. AUTOSWITCHPRIORITY_OFF:
  1139. Type: tcp-text
  1140. Parameter:
  1141. address: ${divaurl}
  1142. text: 'set autoswprio off\n'
  1143. AUTOUPSCALE_ON:
  1144. Type: tcp-text
  1145. Parameter:
  1146. address: ${divaurl}
  1147. text: 'set autonoupscale on\n'
  1148. AUTOUPSCALE_OFF:
  1149. Type: tcp-text
  1150. Parameter:
  1151. address: ${divaurl}
  1152. text: 'set autonoupscale off\n'
  1153. CEC_ON:
  1154. Type: tcp-text
  1155. Parameter:
  1156. address: ${divaurl}
  1157. text: 'set cec on\n'
  1158. CEC_OFF:
  1159. Type: tcp-text
  1160. Parameter:
  1161. address: ${divaurl}
  1162. text: 'set cec off\n'
  1163. OLED_DISPLAY_ON:
  1164. Type: tcp-text
  1165. Parameter:
  1166. address: ${divaurl}
  1167. text: 'set oled on\n'
  1168. OLED_DISPLAY_OFF:
  1169. Type: tcp-text
  1170. Parameter:
  1171. address: ${divaurl}
  1172. text: 'set oled off\n'
  1173. OSD_ON:
  1174. Type: tcp-text
  1175. Parameter:
  1176. address: ${divaurl}
  1177. text: 'set osd on\n'
  1178. OSD_OFF:
  1179. Type: tcp-text
  1180. Parameter:
  1181. address: ${divaurl}
  1182. text: 'set osd off\n'
  1183. REBOOT:
  1184. Type: tcp-text
  1185. Parameter:
  1186. address: ${divaurl}
  1187. text: 'set reboot\n'
Advertisement
Comments
  • User was banned
  • User was banned
  • User was banned
  • User was banned
Add Comment
Please, Sign In to add comment