10-18-2017 15:04
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

10-18-2017 15:04
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
Hi guys,
I just wanted to write a Torch app for my Ionic but unfortunately with the auto dim function it doesn't really work well. Do you guys know if there is a possibility to change the brightness to MAX when I am starting my Torch App? And of course setting it back to AUTO when I quit the App?
Thanks in advance
Answered! Go to the Best Answer.

Accepted Solutions
10-18-2017 16:04
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post


10-18-2017 16:04
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
- Who Voted for this post?
It's not in the current beta, but it will be available as:
import { display } from "display";
// force the screen brightness to maximum (100%) display.brightnessOverride = 1.0; // stop forcing the brightness and let the system manage it display.brightnessOverride = undefined;
10-18-2017 16:04
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post


10-18-2017 16:04
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
- Who Voted for this post?
It's not in the current beta, but it will be available as:
import { display } from "display";
// force the screen brightness to maximum (100%) display.brightnessOverride = 1.0; // stop forcing the brightness and let the system manage it display.brightnessOverride = undefined;
11-07-2017 01:07
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

11-07-2017 01:07
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
The command "display.brightnessOverride" is now available in the Display API, but it seems like it is not working for me. Am I doing something wrong or is the command just not working for now?
Below is a snippet of the code.
display.autoOff = false;
display.on = true;
display.brightnessOverride = 1.0;

11-07-2017 05:58
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post


11-07-2017 05:58
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
Sorry, it's in the documentation now, but you need the new firmware too.

01-19-2018 14:11
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

01-19-2018 14:11
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
I am not a developer. How do I increase the brightness on my Fitbit ionic?

01-19-2018 22:03
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

01-19-2018 22:03
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
@Henry727: To change the brightness of your Ionic, just open the Settings and the first entry is the brightness. Just tap on it, the available values are: Dim, Normal, Max and Auto.
This forum is for Developers, if you have further questions please change into the following forum:https://community.fitbit.com/t5/Ionic/bd-p/ionic

11-22-2019 21:24
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

11-22-2019 21:24
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
For some reason, when I import the display directly above the code, it works, but of not, it doesn't. This is what worked for me (I need the brightness to be dim, but you can change that to 'max'):
import { display } from "display";
display.autoOff = false;
display.on = true;
display.brightnessOverride = "dim";

04-13-2020 13:41
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

04-13-2020 13:41
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
Hi, I tap on it but it doesn't change. I tap into other features and change. What could be the problem?

