Just bought a Electa One MK1 from reverb the screen is very dim, the whole swipe down to get a menu does nothing, I can communicate to the WEB app, but the screen is so dim it is un-usable. I claims to have latest firmware so… What do i try
I would do the following checks if I were you:
It’s not like 1/3 of the screen lights up bright and the rest is dimmed (if that would be the case, go to controller settings and change the ‘control set focus’)?
Else, make sure the E1 receives enough power. Better connect it to PC/laptop via a powered USB hub. To test: just connect it to a power USB adapter, and see if the dimming issue disappears.
Also the display is dimmable, so make sure to adjust brightness
How do you suggest chnaging the brightness I can find no menu option. I swipe down from the top on right nothing. I have tried powereed hub. ETC.. no luck. I find it weird i can upload presets but can’t access the menu.
Hardware revision
2.40
Firmware version
v3.5.4
Serial number
EO-00001
RESTORED: Display Brightness Control for Electra One MK1 HW 2.40 v3.5.4
Overview
The display brightness control feature that was available in firmware v2.0 but dropped in later versions has been successfully restored for Electra One MK1 running firmware v3.5.4!
This implementation adds SysEx-based brightness control while preserving all existing controller functionality.
What This Adds
- 5 brightness levels from maximum to minimum via SysEx commands
- Persistent settings - brightness survives controller reboot (stored in EEPROM)
- Minimal code change - only 25 lines added to firmware
- Full compatibility - works with existing presets, Lua scripts, and controller features
- SysEx API integration - follows Electra One’s existing command structure
Technical Implementation
Firmware Changes
The restoration required adding UPDATE command support for ElectraInfo objects in TaskProcessSysex.cpp:
} else if (cmd.isUpdate()) {
if (object == ElectraCommand::Object::ElectraInfo) {
// Handle brightness update for ElectraInfo
uint16_t brightness = (cmd.getByte1() << 8) | cmd.getByte2();
System::logger.write(LOG_ERROR, "processElectraSysex: setting brightness to %d", brightness);
// Set the brightness value in runtime info
System::runtimeInfo.setElectraInfoBrightness(brightness);
// Apply brightness immediately to the display
Hardware::screen.setBacklightbrightness(brightness);
System::logger.write(LOG_ERROR, "processElectraSysex: brightness set successfully");
MidiOutput::sendAck(MidiInterface::Type::MidiUsbDev, port);
} else {
// Pass other UPDATE commands to application
App::get()->handleElectraSysex(port, sysexBlock);
}
SysEx Command Format
F0 00 21 45 04 7F [MSB] [LSB] F7
F0- SysEx start00 21 45- Electra One manufacturer ID04- UPDATE command7F- ElectraInfo object[MSB] [LSB]- 16-bit brightness value (big-endian)F7- SysEx end
Brightness Value Range
Important: The RA8876 display uses inverted PWM - higher values = darker screen!
- 0 = Maximum brightness (brightest)
- 1024 = High brightness
- 2048 = Medium brightness
- 4096 = Low brightness
- 5888 = Minimum brightness (dimmest)
- 6144 = Hardware maximum (very dim)
Ready-to-Use SysEx Files
| File | Brightness Level | Value | Description |
|---|---|---|---|
set-brightness-maximum.syx |
Maximum | 0 | Brightest setting |
set-brightness-high.syx |
High | 1024 | High brightness |
set-brightness-medium.syx |
Medium | 2048 | Medium brightness |
set-brightness-low.syx |
Low | 4096 | Low brightness |
set-brightness-minimum.syx |
Minimum | 5888 | Dimmest usable setting |
Installation Instructions
Option A: Use Pre-compiled Firmware (Easiest)
- Download the compiled firmware from the GitHub release
- Upload using ElectraOneConsole app or
make upload
Option B: Build from Source
- Prerequisites: ARM GNU Toolchain installed
- Clone repositories:
git clone https://github.com/jelytle/firmware.git git clone https://github.com/electraone/controller.git - Checkout brightness control fork:
cd firmware git checkout brightness-control-v3.5.4 - Link controller app:
ln -sf ../controller ./controller - Build and upload:
make APPPATH=controller all make APPPATH=controller upload
Testing
- Install firmware (see instructions above)
- Test brightness control:
- Send
set-brightness-maximum.syx→ Screen should be brightest - Send
set-brightness-minimum.syx→ Screen should be dimmest
- Send
- Verify persistence: Restart controller, brightness should remain
Expected Response
Successful brightness changes return ACK:
F0 00 21 45 7E 01 00 00 F7
How This Was Discovered
The brightness infrastructure was never removed from v3.5.4 - it just lacked the SysEx command interface:
Hardware::screen.setBacklightbrightness()- Present
System::runtimeInfo.setElectraInfoBrightness()- Present
EEPROM storage functions - Present
UPDATE command handler - Missing (now restored!)
Integration Examples
MIDI Controller
Map hardware knobs/faders to send brightness SysEx commands
Automation
# Python example using python-rtmidi
brightness_cmd = [0xF0, 0x00, 0x21, 0x45, 0x04, 0x7F, 0x08, 0x00, 0xF7] # Medium
midiout.send_message(brightness_cmd)
Max/MSP, Pure Data, etc.
Send raw SysEx messages to Electra Controller CTRL port
Contributing
This feature is now available as:
- Source code: GitHub branch
brightness-control-v3.5.4 - Pre-compiled firmware: GitHub release downloads
- SysEx test files: Ready-to-use brightness control files
Compatibility
- Hardware: Electra One MK1 only (MK2 uses different display driver)
- Firmware: Based on v3.5.4 - fully compatible with existing presets
- Controller App: Tested with full controller application (not just demo)
Result
The Electra One MK1 now has the brightness control that was missing since v2.0, implemented with minimal firmware changes and maximum compatibility!
fork GitHub - jelytle/firmware: Electra One base firmware
Thanks to the excellent Electra One architecture that preserved all the underlying brightness infrastructure - this restoration required only adding the missing SysEx command interface!