{"id":19987560,"url":"https://github.com/douglasneuroinformatics/cryomech_communicate","last_synced_at":"2025-03-01T21:18:49.232Z","repository":{"id":84216228,"uuid":"546093169","full_name":"DouglasNeuroInformatics/cryomech_communicate","owner":"DouglasNeuroInformatics","description":"Python based ModBus TCP client for cryomech cyrogenic helium compressors","archived":false,"fork":false,"pushed_at":"2022-10-05T14:19:58.000Z","size":6,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-12T11:45:46.750Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DouglasNeuroInformatics.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":"2022-10-05T14:07:35.000Z","updated_at":"2022-10-05T14:07:59.000Z","dependencies_parsed_at":"2023-03-12T22:02:17.538Z","dependency_job_id":null,"html_url":"https://github.com/DouglasNeuroInformatics/cryomech_communicate","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DouglasNeuroInformatics%2Fcryomech_communicate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DouglasNeuroInformatics%2Fcryomech_communicate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DouglasNeuroInformatics%2Fcryomech_communicate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DouglasNeuroInformatics%2Fcryomech_communicate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DouglasNeuroInformatics","download_url":"https://codeload.github.com/DouglasNeuroInformatics/cryomech_communicate/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241424764,"owners_count":19960804,"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":[],"created_at":"2024-11-13T04:37:03.323Z","updated_at":"2025-03-01T21:18:49.226Z","avatar_url":"https://github.com/DouglasNeuroInformatics.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cryomech Communicate\n\nThis is a simple python client to communicate with Cryomech corporation cyrogenetic\nhelium compressors to read and write state information over ModBus TCP\n\n## Usage\n\n```\nusage: cryomech_communicate.py [-h] --ip IP [--port PORT]\n\nDump Cryomech Data\n\noptions:\n  -h, --help   show this help message and exit\n  --ip IP      IP of cryomech device (default: None)\n  --port PORT  port for ModBusTCP (default: 502)\n```\n\nJust point the software at the IP address of the cryomech to query the status,\nit returns a json string:\n```\n$ cryomech_communicate.py --ip 1.2.3.4\n{\"datetime\": \"2022-10-05T10:16:52.766194\", \"Operating State\": \"Running\", \"Compressor State\": \"On\", \"Warning State\": \"No warnings\", \"Alarm State\": \"No warnings\", \"Coolant In Temp\": 71.13200378417969, \"Coolant Out Temp\": 97.32599639892578, \"Oil Temp\": 99.0469970703125, \"Helium Temp\": 150.86099243164062, \"Low Pressure\": 71.3375015258789, \"Low Pressure Average\": 77.24246978759766, \"High Pressure\": 288.22088623046875, \"High Pressure Average\": 291.1910705566406, \"Delta Pressure Average\": 216.88339233398438, \"Motor Current\": 26.719694137573242, \"Hours of Opperation\": 24735.5, \"Pressure Unit\": \"psi\", \"Temperature Unit\": \"F\", \"Serial Number\": XXXXX, \"Model\": \"28H7\", \"Software Revision\": \"2.155\"}\n```\n\nUse `jq` for improved formatting if examining on the command line:\n```\n$ cryomech_communicate.py --ip 1.2.3.4 | jq\n{\n  \"datetime\": \"2022-10-05T10:19:27.848124\",\n  \"Operating State\": \"Running\",\n  \"Compressor State\": \"On\",\n  \"Warning State\": \"No warnings\",\n  \"Alarm State\": \"No warnings\",\n  \"Coolant In Temp\": 70.84400177001953,\n  \"Coolant Out Temp\": 97.16300201416016,\n  \"Oil Temp\": 98.9260025024414,\n  \"Helium Temp\": 150.87100219726562,\n  \"Low Pressure\": 82.19590759277344,\n  \"Low Pressure Average\": 77.18533325195312,\n  \"High Pressure\": 292.0447998046875,\n  \"High Pressure Average\": 291.2262878417969,\n  \"Delta Pressure Average\": 209.84889221191406,\n  \"Motor Current\": 26.52256965637207,\n  \"Hours of Opperation\": 24735.5,\n  \"Pressure Unit\": \"psi\",\n  \"Temperature Unit\": \"F\",\n  \"Serial Number\": XXXX,\n  \"Model\": \"28H7\",\n  \"Software Revision\": \"2.155\"\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdouglasneuroinformatics%2Fcryomech_communicate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdouglasneuroinformatics%2Fcryomech_communicate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdouglasneuroinformatics%2Fcryomech_communicate/lists"}