{"id":20562200,"url":"https://github.com/nq4t/log4om-webstatus","last_synced_at":"2025-03-06T08:16:46.464Z","repository":{"id":261172254,"uuid":"626504813","full_name":"nq4t/log4om-webstatus","owner":"nq4t","description":"Uses Log4OM's UDP Messages to display mostly real-time information about your current operating status.","archived":false,"fork":false,"pushed_at":"2023-04-11T15:48:30.000Z","size":5,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-16T19:27:07.015Z","etag":null,"topics":["ham-radio","hamradio","log4om","rig-control","website"],"latest_commit_sha":null,"homepage":"https://nq4t.com/software/log4omudp/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nq4t.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-11T15:44:59.000Z","updated_at":"2024-01-14T02:59:17.000Z","dependencies_parsed_at":"2024-11-05T04:28:59.551Z","dependency_job_id":"cff7502a-9677-4583-91bf-eba23786703b","html_url":"https://github.com/nq4t/log4om-webstatus","commit_stats":null,"previous_names":["nq4t/log4om-webstatus"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nq4t%2Flog4om-webstatus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nq4t%2Flog4om-webstatus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nq4t%2Flog4om-webstatus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nq4t%2Flog4om-webstatus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nq4t","download_url":"https://codeload.github.com/nq4t/log4om-webstatus/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242171481,"owners_count":20083557,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ham-radio","hamradio","log4om","rig-control","website"],"created_at":"2024-11-16T04:09:59.661Z","updated_at":"2025-03-06T08:16:46.011Z","avatar_url":"https://github.com/nq4t.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Log4OM Web Status\n\nThis python program will take UDP messages blasted at it from Log4OM and will write it to a HTML file. It will\ncontinually update this file as messages come in. It requires you to let Log4OM automatically send status packets.\n\n## Usage\n\nPlace the script on a system that can hear UDP from Log4OM and has a way of putting the resulting HTML file on a webserver\nas fast as possible. Edit the script as required (IP, port, output location, HTML formatting).\n\n## Basic Operation\n\nLog4OM has a feature that has it send out UDP messages automatically as long as specific conditions are met. This python\nscript/program will take in the messages sent at it's IP and parse a few things out of the XML. It writes this to an\nHTML file every time a message comes in; so the HTML generated is set to auto-reload every 5 seconds. It currently displays\nthe following in a very basic way:\n\n- Your current VFO frequency and opearating mode.\n- Your TX offset/split if it exists\n- If your radio is off or Log4OM is not loaded\n\nThis now will determine if the radio is off or if Log4OM is not loaded by trying to request the Alive command over remote\ncontrol. It will assue Log4OM is active if a response is received. In an effort to make the thing a bit less chatty, it \nbacks down to 60 second checks when not receiving data automatically. \n\nCode could likely use more optimization. ChatGPT has been used to some degree but currently has issues giving complete \noutput. \n\n## Examples\n\nThis has been implemented on the sidebar/menu of [nq4t.com](https://nq4t.com). The actual webpage that's updated is served\nfrom my [QTH's webserver](https://log.nq4t.com/radio.html).\n\n## History\n\n```\n02-FEB-2023: Initial Version. Shows status and basic offline message.\n04-APR-2023: Second Version. Now shows more percise offline message. Removes threads.\n```\n\n## License\n\n```\nBSD 3-Clause License\n\nCopyright (c) 2023, Jay Moore\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n1. Redistributions of source code must retain the above copyright notice, this\n   list of conditions and the following disclaimer.\n\n2. Redistributions in binary form must reproduce the above copyright notice,\n   this list of conditions and the following disclaimer in the documentation\n   and/or other materials provided with the distribution.\n\n3. Neither the name of the copyright holder nor the names of its\n   contributors may be used to endorse or promote products derived from\n   this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnq4t%2Flog4om-webstatus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnq4t%2Flog4om-webstatus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnq4t%2Flog4om-webstatus/lists"}