This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] LP5562:LP5562非零电流

Guru**** 2442090 points
Other Parts Discussed in Thread: LP5562

请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/power-management-group/power-management/f/power-management-forum/688307/lp5562-lp5562-non-zero-current

器件型号:LP5562

您好!

在 POR 之后、我将其发送到 LP5562 (0x66 I2C 地址)

IicStart();
IicWrite (0x66);
IicWrite (0x00);
IicWrite (0x40);
IicStop();

IicStart();
IicWrite (0x66);
IicWrite (0x08);
IicWrite (0x01);
IicStop();

IicStart();
IicWrite (0x66);
IicWrite (0x70);
IicWrite (0x00);
IicStop();

IicStart();
IicWrite (0x66);
IicWrite (0x02);
IicWrite (0xFF);
IicStop();

IicStart();
IicWrite (0x66);
IicWrite (0x05);
IicWrite (0x00);
IicStop();

这应该在 R 通道上设置直接控制和100% PWM 和0mA。 但是、我可以测量流入 LP5562 R 通道的大约300uA 电流。 当我设置0x00 PWM 时、我可以为通道读取0uA。

所有 R、G、B 通道和我有的两个 LP5562都会发生这种情况。 这会有效地将我的 LED 的可设置电流偏移300uA。 我需要0uA 或100uA 的恒定电流流入 LED、无 PWM。 如何设置?

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    您好、Martin、

    是的、您必须将 PWM 设置为0%才能获得0uA。

    对于100uA、您是否会尝试使用 PWM 将平均电流设置为100uA?

    谢谢。
    平路机、
    Kenneth
  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    谢谢、Kenneth。 我将尝试通过 PWM 设置电流。