@@ -128,21 +128,36 @@ Positions:
128
128
## Check temperatures and fan speed
129
129
130
130
```
131
- > sudo ./target/debug/ framework_tool --thermal
131
+ > sudo framework_tool --thermal
132
132
F75303_Local: 43 C
133
133
F75303_CPU: 44 C
134
134
F75303_DDR: 39 C
135
135
APU: 62 C
136
136
Fan Speed: 0 RPM
137
137
```
138
138
139
- ## Check sensors (ALS and G-Sensor)
139
+ ## Check sensors
140
+
141
+ ### Ambient Light (Framework 13, Framework 16)
140
142
141
143
```
142
- > sudo ./target/debug/ framework_tool --sensors
144
+ > sudo framework_tool --sensors
143
145
ALS: 76 Lux
144
146
```
145
147
148
+ ### Accelerometer (Framework 12)
149
+ ```
150
+ > sudo framework_tool --sensors
151
+ ALS: 0 Lux
152
+ Accelerometers:
153
+ Status Bit: 140 0x8C
154
+ Present: true
155
+ Busy: true
156
+ Lid Angle: 122 Deg
157
+ Sensor 1: X: 0.00G Y: 0.84G, Z: 0.52G
158
+ Sensor 2: X: -0.03G Y: 0.00G, Z: 1.01G
159
+ ```
160
+
146
161
## Set custom fan duty/RPM
147
162
148
163
```
@@ -296,6 +311,45 @@ Battery Status
296
311
> sudo framework_tool --charge-current-limit 2000 80
297
312
```
298
313
314
+ ## EC Console
315
+
316
+ ```
317
+ # Get recent EC console logs and watch for more
318
+ > framework_tool.exe --console follow
319
+ [53694.741000 Battery 62% (Display 61.1 %) / 3h:18 to empty]
320
+ [53715.010000 Battery 62% (Display 61.0 %) / 3h:21 to empty]
321
+ [53734.281200 Battery 62% (Display 60.9 %) / 3h:18 to empty]
322
+ [53738.037200 Battery 61% (Display 60.9 %) / 3h:6 to empty]
323
+ [53752.301500 Battery 61% (Display 60.8 %) / 3h:15 to empty]
324
+ ```
325
+
326
+ ## Keyboard backlight
327
+
328
+ ```
329
+ # Check current keyboard backlight brightness
330
+ > framework_tool.exe --kblight
331
+ Keyboard backlight: 5%
332
+
333
+ # Set keyboard backlight brightness
334
+ # Off
335
+ > framework_tool.exe --kblight 0
336
+ # 20%
337
+ > framework_tool.exe --kblight 20
338
+ ```
339
+
340
+ ## RGB LED (Framework Desktop)
341
+
342
+ ```
343
+ # To set three LEDs to red, green, blue
344
+ sudo framework_tool --rgbkbd 0 0xFF0000 0x00FF00 0x0000FF
345
+
346
+ # To clear 8 LEDs
347
+ sudo framework_tool --rgbkbd 0 0 0 0 0 0 0 0 0
348
+
349
+ # Just turn the 3rd LED red
350
+ sudo framework_tool --rgbkbd 2 0xFF0000
351
+ ```
352
+
299
353
## Stylus (Framework 12)
300
354
301
355
```
0 commit comments