├── .gitignore ├── LICENSE ├── README.md ├── images ├── TPOHM.png ├── ohm_options.png ├── open_hardware_monitor_events.png ├── tp_import_plugin-success.png ├── tp_import_plugin.png ├── tp_ohm.ico ├── tp_ohm_cpu_load_bargraph.png ├── tp_ohm_cpu_load_gauge.png ├── tp_ohm_cpu_temperature_status_event.png ├── tp_ohm_cpu_total_status_event.png ├── tp_ohm_gpu_core_load_status_event.png ├── tp_ohm_gpu_load_bargraph.png ├── tp_ohm_gpu_load_gauge.png ├── tp_ohm_gpu_memory_load_status_event.png ├── tp_ohm_gpu_memory_temperature_status_event.png ├── tp_ohm_gpu_temperature_status_event.png ├── tp_ohm_memory_status_event.png ├── tp_ohm_page_on_phone.gif ├── tp_ohm_screenshot.png ├── tp_ohmexe_task_manager.png └── tp_plugin_trust.png ├── installer └── OpenHardwareMonitor.tpp ├── resources ├── OHM Page Example.tpz ├── tp_ohm_cpu_load_bargraph.tpb ├── tp_ohm_cpu_load_gauge.tpb ├── tp_ohm_gpu_load_bargraph.tpb └── tp_ohm_gpu_load_gauge.tpb └── src ├── OpenHardwareMonitor ├── entry.tp ├── images │ ├── m2.png │ └── m3.png ├── tp_ohm.cfg └── tp_ohm.png └── perl ├── Module ├── Spdermn02 │ ├── Dashboard.pm │ ├── Graph.pm │ └── Logger.pm └── TouchPortal │ └── Socket.pm ├── fixIcon.pl ├── images ├── m2.png └── m3.png ├── libs.txt └── tp_ohm.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/README.md -------------------------------------------------------------------------------- /images/TPOHM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/TPOHM.png -------------------------------------------------------------------------------- /images/ohm_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/ohm_options.png -------------------------------------------------------------------------------- /images/open_hardware_monitor_events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/open_hardware_monitor_events.png -------------------------------------------------------------------------------- /images/tp_import_plugin-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_import_plugin-success.png -------------------------------------------------------------------------------- /images/tp_import_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_import_plugin.png -------------------------------------------------------------------------------- /images/tp_ohm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm.ico -------------------------------------------------------------------------------- /images/tp_ohm_cpu_load_bargraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_cpu_load_bargraph.png -------------------------------------------------------------------------------- /images/tp_ohm_cpu_load_gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_cpu_load_gauge.png -------------------------------------------------------------------------------- /images/tp_ohm_cpu_temperature_status_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_cpu_temperature_status_event.png -------------------------------------------------------------------------------- /images/tp_ohm_cpu_total_status_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_cpu_total_status_event.png -------------------------------------------------------------------------------- /images/tp_ohm_gpu_core_load_status_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_gpu_core_load_status_event.png -------------------------------------------------------------------------------- /images/tp_ohm_gpu_load_bargraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_gpu_load_bargraph.png -------------------------------------------------------------------------------- /images/tp_ohm_gpu_load_gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_gpu_load_gauge.png -------------------------------------------------------------------------------- /images/tp_ohm_gpu_memory_load_status_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_gpu_memory_load_status_event.png -------------------------------------------------------------------------------- /images/tp_ohm_gpu_memory_temperature_status_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_gpu_memory_temperature_status_event.png -------------------------------------------------------------------------------- /images/tp_ohm_gpu_temperature_status_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_gpu_temperature_status_event.png -------------------------------------------------------------------------------- /images/tp_ohm_memory_status_event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_memory_status_event.png -------------------------------------------------------------------------------- /images/tp_ohm_page_on_phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_page_on_phone.gif -------------------------------------------------------------------------------- /images/tp_ohm_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohm_screenshot.png -------------------------------------------------------------------------------- /images/tp_ohmexe_task_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_ohmexe_task_manager.png -------------------------------------------------------------------------------- /images/tp_plugin_trust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/images/tp_plugin_trust.png -------------------------------------------------------------------------------- /installer/OpenHardwareMonitor.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/installer/OpenHardwareMonitor.tpp -------------------------------------------------------------------------------- /resources/OHM Page Example.tpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/resources/OHM Page Example.tpz -------------------------------------------------------------------------------- /resources/tp_ohm_cpu_load_bargraph.tpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/resources/tp_ohm_cpu_load_bargraph.tpb -------------------------------------------------------------------------------- /resources/tp_ohm_cpu_load_gauge.tpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/resources/tp_ohm_cpu_load_gauge.tpb -------------------------------------------------------------------------------- /resources/tp_ohm_gpu_load_bargraph.tpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/resources/tp_ohm_gpu_load_bargraph.tpb -------------------------------------------------------------------------------- /resources/tp_ohm_gpu_load_gauge.tpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/resources/tp_ohm_gpu_load_gauge.tpb -------------------------------------------------------------------------------- /src/OpenHardwareMonitor/entry.tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/OpenHardwareMonitor/entry.tp -------------------------------------------------------------------------------- /src/OpenHardwareMonitor/images/m2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/OpenHardwareMonitor/images/m2.png -------------------------------------------------------------------------------- /src/OpenHardwareMonitor/images/m3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/OpenHardwareMonitor/images/m3.png -------------------------------------------------------------------------------- /src/OpenHardwareMonitor/tp_ohm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/OpenHardwareMonitor/tp_ohm.cfg -------------------------------------------------------------------------------- /src/OpenHardwareMonitor/tp_ohm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/OpenHardwareMonitor/tp_ohm.png -------------------------------------------------------------------------------- /src/perl/Module/Spdermn02/Dashboard.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/perl/Module/Spdermn02/Dashboard.pm -------------------------------------------------------------------------------- /src/perl/Module/Spdermn02/Graph.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/perl/Module/Spdermn02/Graph.pm -------------------------------------------------------------------------------- /src/perl/Module/Spdermn02/Logger.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/perl/Module/Spdermn02/Logger.pm -------------------------------------------------------------------------------- /src/perl/Module/TouchPortal/Socket.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/perl/Module/TouchPortal/Socket.pm -------------------------------------------------------------------------------- /src/perl/fixIcon.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/perl/fixIcon.pl -------------------------------------------------------------------------------- /src/perl/images/m2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/perl/images/m2.png -------------------------------------------------------------------------------- /src/perl/images/m3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/perl/images/m3.png -------------------------------------------------------------------------------- /src/perl/libs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/perl/libs.txt -------------------------------------------------------------------------------- /src/perl/tp_ohm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spdermn02/TouchPortal_OpenHardwareMonitor_Plugin/HEAD/src/perl/tp_ohm.pl --------------------------------------------------------------------------------