Skip to content

Instantly share code, notes, and snippets.

@denysvitali
Forked from tstellanova/jetson_hdmi_config.md
Last active November 1, 2017 01:21
Show Gist options
  • Save denysvitali/13c0323fd5f85dca2eb6acf03718367c to your computer and use it in GitHub Desktop.
Save denysvitali/13c0323fd5f85dca2eb6acf03718367c to your computer and use it in GitHub Desktop.
Enable and Disable HDMI display on Jetson TK1

All operations as root:

turn off HDMI:

echo -1 > /sys/kernel/debug/tegra_hdmi/hotplug
echo 4 > /sys/class/graphics/fb0/blank

turn on HDMI:

echo 1 > /sys/kernel/debug/tegra_hdmi/hotplug
echo 0 > /sys/class/graphics/fb0/blank
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment