[YMCS/YDMP Free Trial Program]Yealink would like to offer Free Trial Program of Yealink device management service for our current eligible customers. You can see the details below.
https://www.yealink.com/ydmp-freetrial-2020


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
T46G - FEATURE REQUEST - schedule for backlight level
Author Message
bnmand Offline
Junior Member
**

Posts: 12
Joined: Jun 2015
Reputation: 0
Post: #1
T46G - FEATURE REQUEST - schedule for backlight level
It would be good if we could configure a schedule for the backlight level of the phone.

It would be good if the backlight could say be set to turn to off between 7pm and 7am after say 10 minutes or so of inactivity. This would help extend the life of the display and reduce unnecessary power usage.

During the day we'd still want it set to e.g. 4 after a period of inactivity.
(This post was last modified: 06-02-2015 09:12 AM by bnmand.)
06-02-2015 09:11 AM
Find all posts by this user    like1    dislike0 Quote this message in a reply
Flora_Yealink Offline
Senior Member
****

Posts: 265
Joined: Oct 2012
Reputation: 4
Post: #2
RE: T46G - FEATURE REQUEST - schedule for backlight level
Hi,
Sorry we don't have support this feature but would you please help share us more information?
may I know if the customer leave the office, will they choose to power off the phone ?
and is there any brand phone can support feature ?
with more information , I can submit the request to the product team for their considering.
thanks for your help.

Best Regards!
Flora
06-02-2015 06:42 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
luckman212 Offline
Junior Member
**

Posts: 4
Joined: May 2015
Reputation: 0
Post: #3
RE: T46G - FEATURE REQUEST - schedule for backlight level
(06-02-2015 06:42 PM)Flora Wrote:  and is there any brand phone can support feature ?

Yes, Polycom phones support a schedule for changing the backlight level.
06-02-2015 07:40 PM
Find all posts by this user    like1    dislike0 Quote this message in a reply
bnmand Offline
Junior Member
**

Posts: 12
Joined: Jun 2015
Reputation: 0
Post: #4
RE: T46G - FEATURE REQUEST - schedule for backlight level
With no one in the office for well over half a day it would extend the life of the phone display and conserve energy if the display turned off after a brief period of inactivity at night.

Expecting people to unplug several phones at night and plug them in again in the morning is not practical.
06-02-2015 08:22 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
CWR Offline
Moderator
*****

Posts: 717
Joined: May 2013
Reputation: 7
Post: #5
RE: T46G - FEATURE REQUEST - schedule for backlight level
what a great idea!

Craig Reilly
MCSA, 3cx Advanced Certified
Scottsdale, AZ
06-02-2015 09:13 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
Fez Offline
Junior Member
**

Posts: 4
Joined: Jun 2015
Reputation: 0
Post: #6
RE: T46G - FEATURE REQUEST - schedule for backlight level
The option to set this for specific times of the day would be very useful, as well as possibly allow it to be controlled by the connected system. If the system is connected to Exchange/Outlook and the user is known to be in "in a meeting", "out of the office" etc. then the display could be dimmed/ turned off!
06-02-2015 11:00 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
Flora_Yealink Offline
Senior Member
****

Posts: 265
Joined: Oct 2012
Reputation: 4
Post: #7
RE: T46G - FEATURE REQUEST - schedule for backlight level
In this case, I would suggest we can use the push xml feature to support it .
as you known, Yealink phone can support push xml feature, in this case, if the server can send pushxml file at 7:00am with below information.
Config.php file, content like below,
<?php
#
function push2phone($server,$phone,$data)
{
$xml = "xml=".$data;
$post = "POST / HTTP/1.1\r\n";
$post .= "Host: $phone\r\n";
$post .= "Referer: $server\r\n";
$post .= "Connection: Keep-Alive\r\n";
$post .= "Content-Type: text/xml\r\n";
$post .= "Content-Length: ".strlen($xml)."\r\n\r\n";
$fp = @fsockopen ( $phone, 80, $errno, $errstr, 5);
if($fp)
{
fputs($fp, $post.$xml);
flush();
fclose($fp);
}
}
##############################

$xml = "<YealinkIPPhoneConfiguration Beep=\"yes\">\n";
$xml .= "
<Item>phone_setting.backlight_time=30</Item>
<Item>phone_setting.active_backlight_level=4</Item>
<Item>phone_setting.inactive_backlight_level =1 </Item>\n";

$xml .= "</YealinkIPPhoneConfiguration >\n";

push2phone("10.2.5.101","10.15.5.12",$xml);
push2phone("10.1.3.8","10.2.9.83",$xml);


#replace first ip with your Apache ip address
#replace second ip with your phone ip address
?>

In this case, the phone will set backlight level to e.g. 4 after a period of inactivity.

and at 7:00pm , the server push the Config.php like below,
<?php
#
function push2phone($server,$phone,$data)
{
$xml = "xml=".$data;
$post = "POST / HTTP/1.1\r\n";
$post .= "Host: $phone\r\n";
$post .= "Referer: $server\r\n";
$post .= "Connection: Keep-Alive\r\n";
$post .= "Content-Type: text/xml\r\n";
$post .= "Content-Length: ".strlen($xml)."\r\n\r\n";
$fp = @fsockopen ( $phone, 80, $errno, $errstr, 5);
if($fp)
{
fputs($fp, $post.$xml);
flush();
fclose($fp);
}
}
##############################

$xml = "<YealinkIPPhoneConfiguration Beep=\"yes\">\n";
$xml .= "
<Item>phone_setting.backlight_time=30</Item>
<Item>phone_setting.active_backlight_level=4</Item>
<Item>phone_setting.inactive_backlight_level =0 </Item>\n";

$xml .= "</YealinkIPPhoneConfiguration >\n";

push2phone("10.2.5.101","10.15.5.12",$xml);
push2phone("10.1.3.8","10.2.9.83",$xml);


#replace first ip with your Apache ip address
#replace second ip with your phone ip address
?>


In this case, the phone will turn off the backlight when it hasn't been used for 30 seconds, you can change the time yourself.

Would you please check if it can meet your requirement? for more information , please refer to below information.
http://support.yealink.com/attachmentDow...de_V73.rar
Best Regards!
Flora
06-05-2015 04:01 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
bnmand Offline
Junior Member
**

Posts: 12
Joined: Jun 2015
Reputation: 0
Post: #8
RE: T46G - FEATURE REQUEST - schedule for backlight level
I will look into this. So I put this on a server and somehow push this to the phone? Can it be on any server e.g. one on the same LAN?
(This post was last modified: 06-05-2015 05:24 PM by bnmand.)
06-05-2015 05:24 PM
Find all posts by this user    like0    dislike0 Quote this message in a reply
Flora_Yealink Offline
Senior Member
****

Posts: 265
Joined: Oct 2012
Reputation: 4
Post: #9
RE: T46G - FEATURE REQUEST - schedule for backlight level
Yes, you put the Config.php file on the server and change the settings in the Config.php file.
push2phone("10.1.3.8","10.2.9.83",$xml);
#replace first ip with your Apache ip address
#replace second ip with your phone ip address

and on the phones, you need to configure the servers Ip addrss as " Push XML Server IP Address" on the phone's Features->Remote Control page .
In this case ,the phone can accept the pushxml sent from this server.

yes, it can be the server on the same LAN, please test and let us know if any question.
Best Regards!
Flora
06-06-2015 10:52 AM
Find all posts by this user    like0    dislike0 Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  T43U and sound level in conference sles 1 380 04-18-2024 07:30 PM
Last Post: sles
  Need bin and rfs files SIP-T46G RobbyK 1 1,066 01-11-2024 11:26 PM
Last Post: complex1
  SIP-T46G Need firmware update instructions RobbyK 2 1,389 01-11-2024 10:52 PM
Last Post: RobbyK
  T46G recovery files evoip 1 1,692 10-10-2023 12:46 AM
Last Post: Yisroel_MongoTEL
  T43U using L2TP VPN feature kaausc 0 967 06-22-2023 02:58 AM
Last Post: kaausc
  T46G Multiple EXT Port amandah 2 2,177 04-04-2023 01:06 AM
Last Post: Yisroel_MongoTEL
Photo T46G LED blinks when screen is off W 4 8,417 03-29-2023 05:36 AM
Last Post: matthewchubb
  T46G/S Multicast on PC Port Issue MiKeDaDoC 5 11,931 01-02-2023 01:30 AM
Last Post: kw160008
  Does T4XU supports DD Phone Feature? kevinschlemmer 0 1,453 12-06-2022 10:48 PM
Last Post: kevinschlemmer
  T46G call completed elsewhere zimbocz 3 10,283 10-28-2022 03:28 AM
Last Post: tredd1982

Forum Jump:


User(s) browsing this thread: 1 Guest(s)

Contact Us   Yealink   Return to Top   Return to Content   Lite (Archive) Mode   RSS Syndication