My findings (Service Menu, avanced service menu) with IR or without for 55MU61000

General forum talking area for M/Q series TVs.
Post Reply

realdar
Posts: 1
Joined: Sun Feb 18, 2018 3:29 am

My findings (Service Menu, avanced service menu) with IR or without for 55MU61000

Post by realdar »

First it seems this doesn't seem to work:
- Turn the power off 'info, menu, mute, power' the TV will then turn itself on and display a menu.
- Turn the power off. On the remote, press Mute followed by 1, 8, 2, Power in sequence.
- Turn the power off press the {DISPLAY} {P.STD} {MUTE} {POWER} on the remote.
- Turn the power off press the {SLEEP} {P.STD} {MUTE} {POWER} on the remote.
- Turn the power off press the {DISPLAY} {MENU} {MUTE} {POWER} on the remote.

This give access to another menu (acces with a samsung s6 and samsung remote IR application)
With the TV in standby. On the remote, press Mute followed by 1, 1, 9, Enter in sequence.
(which is a sub menu inside the service menu)

So to access you'll need either with using INFO and then FACTORY with Service Remote Control Samsung-TV (SRC)
when the tv is on. (S1 then S2) as described here:https://forum.samygo.tv/viewtopic.php?f ... 05#p88075 To access the advanced menu (select it and press To access the advanced menu (select it and press
to quit click S2 twice
To access the advanced menu (select it and press 0 0 0 0 with an IR remote)
BUT if you don't have a phone supporting IR you can do it from your computer
(under windows:ruSamsungTVCommunicator)
under unix, using node:
npm install samsung-tv-remote
you can then edit a js file:

Code: Select all

----------------activate_service_menu.js--------------------------
const SamsungTvRemote = require('samsung-tv-remote');
let remote = new SamsungTvRemote({
	ip: '192.168.1.131' // required : IP address of the Samsung SmartTV
});
remote.isTvAlive(() => {
remote.sendKey('KEY_INFO');
remote.sendKey('KEY_FACTORY');
});
-----------------activate_service_menu.js-------------------------
the run it with:
node activate_service_menu.js

To exit the menu:

Code: Select all

------------------------------
const SamsungTvRemote = require('samsung-tv-remote');
let remote = new SamsungTvRemote({
	ip: '192.168.1.131' // required : IP address of the Samsung SmartTV
});
function sleep(ms) {
  return new Promise(resolve => setTimeout(resolve, ms));
}

remote.isTvAlive(() => {
remote.sendKey('KEY_FACTORY');
});
----------------------------
run it twice

To access the advanced menu (select it and run the following 4 times)

Code: Select all

----------------------------
const SamsungTvRemote = require('samsung-tv-remote');
let remote = new SamsungTvRemote({
	ip: '192.168.1.131' // required : IP address of the Samsung SmartTV
});
function sleep(ms) {
  return new Promise(resolve => setTimeout(resolve, ms));
}

remote.isTvAlive(() => {
remote.sendKey('KEY_0');
});
---------------------------
Last edited by zoelechat on Sun Feb 18, 2018 3:29 pm, edited 1 time in total.
Reason: [code] tag

Post Reply

Return to “[M/Q] General”