mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-19 03:13:14 +00:00
- `TT_LOG_*` macros are replaced by `Logger` via `#include<Tactility/Logger.h>` - Changed default timezone to Europe/Amsterdam - Fix for logic bug in unPhone hardware - Fix for init/deinit in DRV2605 driver - Other fixes - Removed optimization that broke unPhone (disabled the moving of heap-related functions to flash)
113 lines
3.2 KiB
C++
113 lines
3.2 KiB
C++
#include "KeyboardBacklight.h"
|
|
|
|
#include <Tactility/Logger.h>
|
|
|
|
#include <cstring>
|
|
#include <esp_log.h>
|
|
|
|
static const auto LOGGER = tt::Logger("KeyboardBacklight");
|
|
|
|
namespace keyboardbacklight {
|
|
|
|
static const uint8_t CMD_BRIGHTNESS = 0x01;
|
|
static const uint8_t CMD_DEFAULT_BRIGHTNESS = 0x02;
|
|
|
|
static i2c_port_t g_i2cPort = I2C_NUM_MAX;
|
|
static uint8_t g_slaveAddress = 0x55;
|
|
static uint8_t g_currentBrightness = 127;
|
|
|
|
// TODO: Umm...something. Calls xxxBrightness, ignores return values.
|
|
bool init(i2c_port_t i2cPort, uint8_t slaveAddress) {
|
|
g_i2cPort = i2cPort;
|
|
g_slaveAddress = slaveAddress;
|
|
|
|
LOGGER.info("Initialized on I2C port {}, address 0x{:02X}", static_cast<int>(g_i2cPort), g_slaveAddress);
|
|
|
|
// Set a reasonable default brightness
|
|
if (!setDefaultBrightness(127)) {
|
|
LOGGER.error("Failed to set default brightness");
|
|
return false;
|
|
}
|
|
|
|
if (!setBrightness(127)) {
|
|
LOGGER.error("Failed to set brightness");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool setBrightness(uint8_t brightness) {
|
|
if (g_i2cPort >= I2C_NUM_MAX) {
|
|
LOGGER.error("Not initialized");
|
|
return false;
|
|
}
|
|
|
|
// Skip if brightness is already at target value (avoid I2C spam on every keypress)
|
|
if (brightness == g_currentBrightness) {
|
|
return true;
|
|
}
|
|
|
|
LOGGER.info("Setting brightness to {} on I2C port {}, address 0x{:02X}", brightness, static_cast<int>(g_i2cPort), g_slaveAddress);
|
|
|
|
i2c_cmd_handle_t cmd = i2c_cmd_link_create();
|
|
i2c_master_start(cmd);
|
|
i2c_master_write_byte(cmd, (g_slaveAddress << 1) | I2C_MASTER_WRITE, true);
|
|
i2c_master_write_byte(cmd, CMD_BRIGHTNESS, true);
|
|
i2c_master_write_byte(cmd, brightness, true);
|
|
i2c_master_stop(cmd);
|
|
|
|
esp_err_t ret = i2c_master_cmd_begin(g_i2cPort, cmd, pdMS_TO_TICKS(100));
|
|
i2c_cmd_link_delete(cmd);
|
|
|
|
if (ret == ESP_OK) {
|
|
g_currentBrightness = brightness;
|
|
LOGGER.info("Successfully set brightness to {}", brightness);
|
|
return true;
|
|
} else {
|
|
LOGGER.error("Failed to set brightness: {} (0x{:02X})", esp_err_to_name(ret), ret);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool setDefaultBrightness(uint8_t brightness) {
|
|
if (g_i2cPort >= I2C_NUM_MAX) {
|
|
LOGGER.error("Not initialized");
|
|
return false;
|
|
}
|
|
|
|
// Clamp to valid range for default brightness
|
|
if (brightness < 30) {
|
|
brightness = 30;
|
|
}
|
|
|
|
i2c_cmd_handle_t cmd = i2c_cmd_link_create();
|
|
i2c_master_start(cmd);
|
|
i2c_master_write_byte(cmd, (g_slaveAddress << 1) | I2C_MASTER_WRITE, true);
|
|
i2c_master_write_byte(cmd, CMD_DEFAULT_BRIGHTNESS, true);
|
|
i2c_master_write_byte(cmd, brightness, true);
|
|
i2c_master_stop(cmd);
|
|
|
|
esp_err_t ret = i2c_master_cmd_begin(g_i2cPort, cmd, pdMS_TO_TICKS(100));
|
|
i2c_cmd_link_delete(cmd);
|
|
|
|
if (ret == ESP_OK) {
|
|
LOGGER.debug("Set default brightness to {}", brightness);
|
|
return true;
|
|
} else {
|
|
LOGGER.error("Failed to set default brightness: {}", esp_err_to_name(ret));
|
|
return false;
|
|
}
|
|
}
|
|
|
|
uint8_t getBrightness() {
|
|
if (g_i2cPort >= I2C_NUM_MAX) {
|
|
LOGGER.error("Not initialized");
|
|
return 0;
|
|
}
|
|
|
|
return g_currentBrightness;
|
|
}
|
|
|
|
}
|