<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[For devices with no Notification LED is it possible to use flashlight instead?]]></title><description><![CDATA[<p dir="auto">Would it be possible to have an option to trigger the flashlight as a subtle notification LED.<br />
Ideally as part of UT but open to other temporary solutions.</p>
]]></description><link>https://forums.ubports.com/topic/11057/for-devices-with-no-notification-led-is-it-possible-to-use-flashlight-instead</link><generator>RSS for Node</generator><lastBuildDate>Sun, 12 Apr 2026 17:03:59 GMT</lastBuildDate><atom:link href="https://forums.ubports.com/topic/11057.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 12 Jun 2025 15:27:13 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to For devices with no Notification LED is it possible to use flashlight instead? on Fri, 27 Jun 2025 13:27:10 GMT]]></title><description><![CDATA[<p dir="auto">To progress further with the initial flashlight idea, controlling the flash directly appears to work fine in the following way.</p>
<pre><code>#!/usr/bin/env bash

flashOff() {
	printf '%s' "0" &gt; /sys/class/leds/led:torch_0/brightness
	printf '%s' "0" &gt; /sys/class/leds/led:switch_0/brightness
}

flashOn() { # 2 appears to be the minimum brightness value possible
	printf '%s' "2" &gt; /sys/class/leds/led:torch_0/brightness
	printf '%s' "1" &gt; /sys/class/leds/led:switch_0/brightness
}
</code></pre>
<p dir="auto">So with a loop I can have a nice flashing pattern at the minimum brightness.<br />
Just need to find what to hook into so I can have it only running only while there is a green notifications icon.</p>
<p dir="auto">As for using the screen, I think the green envelope icon, possibly slowly moving along the top edge of the screen (to minimise any burn in); would be a nice option there.</p>
]]></description><link>https://forums.ubports.com/post/86577</link><guid isPermaLink="true">https://forums.ubports.com/post/86577</guid><dc:creator><![CDATA[sixwheeledbeast]]></dc:creator><pubDate>Fri, 27 Jun 2025 13:27:10 GMT</pubDate></item><item><title><![CDATA[Reply to For devices with no Notification LED is it possible to use flashlight instead? on Thu, 26 Jun 2025 11:58:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ikoz" aria-label="Profile: ikoz">@<bdi>ikoz</bdi></a><br />
That's exactly what I expected to see with amoled smartphone and no led.<br />
And for preventing burning problems, changing the pixels used every flash.</p>
]]></description><link>https://forums.ubports.com/post/86545</link><guid isPermaLink="true">https://forums.ubports.com/post/86545</guid><dc:creator><![CDATA[Keneda]]></dc:creator><pubDate>Thu, 26 Jun 2025 11:58:43 GMT</pubDate></item><item><title><![CDATA[Reply to For devices with no Notification LED is it possible to use flashlight instead? on Thu, 26 Jun 2025 10:17:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sixwheeledbeast" aria-label="Profile: sixwheeledbeast">@<bdi>sixwheeledbeast</bdi></a></p>
<blockquote>
<p dir="auto">This isn't a feature in Ubuntu Touch yet either is it?</p>
</blockquote>
<p dir="auto">No, it isn't a feature of UT, at least not on any of my devices.</p>
<p dir="auto">I don't know of that feature is used in android of FP5 either. I have just seen it on another device and thought it is a better idea than using the flashlight.</p>
<blockquote>
<p dir="auto">Would there be any burn in concerns using the screen?</p>
</blockquote>
<p dir="auto">I don't think that it can cause significant burn-in to the screen as it is on very briefly. Also, while using the device that part of the screen is mostly black.</p>
]]></description><link>https://forums.ubports.com/post/86540</link><guid isPermaLink="true">https://forums.ubports.com/post/86540</guid><dc:creator><![CDATA[ikoz]]></dc:creator><pubDate>Thu, 26 Jun 2025 10:17:31 GMT</pubDate></item><item><title><![CDATA[Reply to For devices with no Notification LED is it possible to use flashlight instead? on Thu, 26 Jun 2025 07:37:09 GMT]]></title><description><![CDATA[<p dir="auto">This isn't a feature in Ubuntu Touch yet either is it?<br />
Would there be any burn in concerns using the screen?<br />
I certainly miss having a flicker of a notification led every few seconds for missed calls and messages.<br />
I didn't expect to miss a small feature so much on this device.</p>
]]></description><link>https://forums.ubports.com/post/86537</link><guid isPermaLink="true">https://forums.ubports.com/post/86537</guid><dc:creator><![CDATA[sixwheeledbeast]]></dc:creator><pubDate>Thu, 26 Jun 2025 07:37:09 GMT</pubDate></item><item><title><![CDATA[Reply to For devices with no Notification LED is it possible to use flashlight instead? on Thu, 26 Jun 2025 07:16:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sixwheeledbeast" aria-label="Profile: sixwheeledbeast">@<bdi>sixwheeledbeast</bdi></a> On android the screen is used as a notification led. It works better on amoled screen as only a little circle on the top (where the led used to be) is on, and the rest of the screen is off.</p>
]]></description><link>https://forums.ubports.com/post/86535</link><guid isPermaLink="true">https://forums.ubports.com/post/86535</guid><dc:creator><![CDATA[ikoz]]></dc:creator><pubDate>Thu, 26 Jun 2025 07:16:16 GMT</pubDate></item><item><title><![CDATA[Reply to For devices with no Notification LED is it possible to use flashlight instead? on Wed, 25 Jun 2025 23:04:04 GMT]]></title><description><![CDATA[<p dir="auto">Comparing with flashlight on and off.</p>
<p dir="auto">Off<br />
/sys/class/led/led:switch_0/brightness = 0<br />
/sys/class/led/led:torch_0/brightness = 0<br />
/sys/class/led/led:torch_3/brightness = 0</p>
<p dir="auto">On<br />
/sys/class/led/led:switch_0/brightness = 1<br />
/sys/class/led/led:torch_0/brightness = 127<br />
/sys/class/led/led:torch_3/brightness = 127</p>
<p dir="auto">I'll need to test if changing these will trigger the light, certainly just making switch_0 = 1 doesn't work.<br />
Not sure if this is the correct way to interface with these.</p>
<p dir="auto">As for monitoring for new messages I'm wondering if dbus-monitor could be used...</p>
]]></description><link>https://forums.ubports.com/post/86532</link><guid isPermaLink="true">https://forums.ubports.com/post/86532</guid><dc:creator><![CDATA[sixwheeledbeast]]></dc:creator><pubDate>Wed, 25 Jun 2025 23:04:04 GMT</pubDate></item></channel></rss>