Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Power LED brightness misleading? #141

Open
Frosty-J opened this issue Feb 1, 2024 · 2 comments
Open

Power LED brightness misleading? #141

Frosty-J opened this issue Feb 1, 2024 · 2 comments
Assignees

Comments

@Frosty-J
Copy link
Contributor

Frosty-J commented Feb 1, 2024

Following discussions on Discord, it looks like the power LED is always lit, rather than having the 256 brightness levels I had inferred from this table.

power
@m00dawg m00dawg self-assigned this Feb 9, 2024
@m00dawg
Copy link
Collaborator

m00dawg commented Feb 9, 2024

This appears to be correct. In testing it via:

  ; Turn off activity LED
  LDX #$42 ; System Management Controller
  LDY #$05 ; Activity LED
  LDA #$00 ; Turn off
  JSR i2c_write_byte ; Turn off LED
; Turn off Power LED
  LDX #$42 ; System Management Controller
  LDY #$04 ; Power LED
  LDA #$00 ; Turn off
  JSR i2c_write_byte ; Turn off LED

Activity light goes off but the power led does not, at least on X16 Dev.

@Frosty-J
Copy link
Contributor Author

Fixed in #172 but leaving this open since it seems the activity LED may only be on/off rather than having brightness control.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants