How to connect HDMI monitor to my AutoPi TMU

I need to connect my HDMI monitor to the autopi TMU unit. I want to use the monitor as a dashboard display showing the autopi dashboard.
I tried to setup iceweasel with xorg/xinit and xserver setup to login as user screen but nothing gets displayed on the HDMI after boot up. It appears the HDMI is shut down. And I can’t connect through ssh to the TMU.

help needed urgently

Don’t have an AutoPi here, but as it uses a Raspberry Pi, I think this solution should apply.

Considering you are using a Linux distribution, run the following with the device SD card connected to your host PC: (If you aren’t using Linux, maybe you could access this file with some tool, or even directly by Windows)

$ sudo mount /dev/sdX1 /mnt - Where X stands for the SD Card device identifier
$ cd /mnt
$ vim (or nano) /mnt/config.txt

Editing this “config.txt” file, you should be able to enable HDMI if it’s not. For that, check those lines:

################################################################################
##  High Definition Video Settings
################################################################################

## hdmi_safe
##     Use "safe mode" settings to try to boot with maximum hdmi compatibility.
##
##     Value    Description
##     -------------------------------------------------------------------------
##     0        Disabled (Default)
##     1        Enabled (this does: hdmi_force_hotplug=1,
##                                  hdmi_ignore_edid=0xa5000080,
##                                  config_hdmi_boost=4, hdmi_group=2,
##                                  hdmi_mode=4, disable_overscan=0,
##                                  overscan_left=24, overscan_right=24,
##                                  overscan_top=24, overscan_bottom=24)
##
#hdmi_safe=1

## hdmi_force_hotplug
##     Pretends HDMI hotplug signal is asserted so it appears a HDMI display
##     is attached
##
##     Value    Description
##     -------------------------------------------------------------------------
##     0        Disabled (Default)
##     1        Use HDMI mode even if no HDMI monitor is detected
##
#hdmi_force_hotplug=1

## hdmi_ignore_hotplug
##     Pretends HDMI hotplug signal is not asserted so it appears a HDMI
##     display is not attached
##
##     Value    Description
##     -------------------------------------------------------------------------
##     0        Disabled (Default)
##     1        Use composite mode even if HDMI monitor is detected
##
#hdmi_ignore_hotplug=1

Thanks. Already sorted this out

This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.