|
|
|
|
Raspberry Pi | DSA-13PFC-05 FCA 051250 | 5.1V 2.5A Raspberry Pi Universal Power Supply |
Adafruit | GEO241DA-0540 | 5V 4A Switching Power Supply |
Edimax | EW-7811Un | USB wireless networking adapter |
Intel | 8265NGW | Dual Band Wireless-AC M.2 2230 Device |
Noctua | NF-A4x20 5V PWM | 4-pin 5V PWM fan compatible with developer kit heatsink |
![]() Wireless 802.11n USB Adapter Edimax ASIN: B003MTTJOY Edimax EW-7811Un |
![]() Intel Dual Band Wireless-AC 8265 ワイヤレス 802.11ac 867Mbps Dual band 2x2 WiFi + Bluetooth 4.2 カード 8265NGW ASIN: B0721MLM8B Intel 8265NGW |
![]() Noctua NF-A4x20 5V PWM 40mm 静音 ファン 5000rpm ASIN: B071FNHVXN Noctua NF-A4x20 5V PWM 厚さが 2cm |
![]() Noctua NF-A4x10 5V PWMサイレントファン40 mmプレミアムブラウン/ベージュ ASIN: B07DXS86G7 Noctua NF-A4x10 5V PWM 厚さが 1cmの薄型 |
# Jetson Nano 冷却ファンの状態を取得 cat /sys/devices/pwm-fan/target_pwm 0 # 0なのでオフ # Jetson Nano 冷却ファンの制御 # オフ sudo sh -c 'echo 0 > /sys/devices/pwm-fan/target_pwm' # 50% sudo sh -c 'echo 128 > /sys/devices/pwm-fan/target_pwm' # 100% sudo sh -c 'echo 255 > /sys/devices/pwm-fan/target_pwm' # 下記の方法でも冷却ファンの制御が可能 # オフ echo 0 | sudo tee /sys/devices/pwm-fan/target_pwm # 50% echo 128 | sudo tee /sys/devices/pwm-fan/target_pwm # 100% echo 255 | sudo tee /sys/devices/pwm-fan/target_pwm