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

Add role for decreasing power consumption on pi:s #38

Merged
merged 1 commit into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,6 @@ static_dhcp_clients:
xx:xx:xx:xx:xx:xx: ip2
```
`

## Headless powersave
Disables HDMI and on-device leds to save power
18 changes: 18 additions & 0 deletions roles/headless-powersave/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
- name: Disable HDMI
become: true
ansible.builtin.lineinfile:
path: /boot/config.txt
state: present
regexp: "dtoverlay=vc4-kms-v3d"
line: "dtoverlay=vc4-kms-v3d,nohdmi"

- name: Disable Activity LED
become: true
ansible.builtin.lineinfile:
path: /boot/config.txt
state: present
line: "{{ item }}"
loop:
- "dtparam=act_led_trigger=none"
- "dtparam=act_led_activelow=on"
Loading