{"id":16281187,"url":"https://github.com/ismet55555/labview-oop-classes","last_synced_at":"2025-04-02T14:11:32.406Z","repository":{"id":105025410,"uuid":"244193432","full_name":"ismet55555/LabVIEW-OOP-Classes","owner":"ismet55555","description":"Simple, clear, and organized object oriented approach to LabVIEW","archived":false,"fork":false,"pushed_at":"2022-01-16T00:00:49.000Z","size":2887,"stargazers_count":24,"open_issues_count":0,"forks_count":9,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-02-08T05:17:02.030Z","etag":null,"topics":["analog","daq","database","digital","goop","hardware","labview","labview-oop","utility-classes"],"latest_commit_sha":null,"homepage":"","language":"LabVIEW","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ismet55555.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}},"created_at":"2020-03-01T17:32:11.000Z","updated_at":"2025-01-19T16:22:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"c3f4ead1-eeb7-4443-9094-e0259453c6df","html_url":"https://github.com/ismet55555/LabVIEW-OOP-Classes","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/ismet55555%2FLabVIEW-OOP-Classes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ismet55555%2FLabVIEW-OOP-Classes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ismet55555%2FLabVIEW-OOP-Classes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ismet55555%2FLabVIEW-OOP-Classes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ismet55555","download_url":"https://codeload.github.com/ismet55555/LabVIEW-OOP-Classes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246828502,"owners_count":20840474,"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":["analog","daq","database","digital","goop","hardware","labview","labview-oop","utility-classes"],"created_at":"2024-10-10T19:05:32.053Z","updated_at":"2025-04-02T14:11:32.382Z","avatar_url":"https://github.com/ismet55555.png","language":"LabVIEW","funding_links":["https://www.buymeacoffee.com/ismet55555"],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eLabVIEW-OOP-Classes\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e Simple, clear, and organized object oriented approach to LabVIEW. \u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003ca href=\"https://www.buymeacoffee.com/ismet55555\" target=\"_blank\"\u003e\u003cimg src=\"https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png\" alt=\"Buy Me A Coffee\" style=\"height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;\" \u003e\u003c/a\u003e\u003c/p\u003e\n\n## Included LabVIEW Classes\n- DAQ\n  - Analog Input\n  - Digital Input\n  - Digital Output\n  - SSR (Solid State Relay)\n  - Temparture (Thermocouple)\n- Hardware\n  - Moog Animatics SmartMotor (https://www.animatics.com/)\n  - TDK-Lambda DC Power Supplies (Genesys) (https://us.tdk-lambda.com/hp/product_html/low_volt.htm)\n- Uitlity\n  - Timer - Object to independantly keep track of time\n  - UUT - Object to define a *Unit Under Test* and its parameters (can be passed around)\n  - Database - Object that interfaces with a TDMS database\n  - Results Logger - Object that can be used to log results to a local file\n\n## Usage\nYou have to create a LabVIEW project to use any of these classes.\nIt is probably smarter and cleaner to copy the entire class directory into the project directory before importing the class.\nTo import any of the LabVIEW classes into your own labview project, simply add the `.lvclass` file into your project. If you are not sure how to add files to a project, here is an overview: https://zone.ni.com/reference/en-XX/help/371361R-01/lvhowto/adding_items_project/\n\n## Examples\nAll of these LabVIEW class definitions have example code included in the form of a labview project (.lvproj).\nYou can use actual NI Hardware for the DAQ definitions, or you can also simulate hardware using NI-MAX. \n\nIf you are not sure how to create a simulated hardware, here is an overview: http://www.ni.com/tutorial/3698/en/  (Note that you only have to create it, then use these LabVIEW classes to reference them). If you cannot find the \"Create New\" button in NI-MAX, you may have to download the matching NI-DAQmx. Note, the NI-DAQmx MUST match the LabVIEW version (ie. 20.0 for both)\n\n## NOTE \n- Some of the classes (ie. DAQ) start an independent background process, which continously aquires data. If this independent process is not properly stopped, it will run in the background until LabVIEW is exited.  So be sure to use the appropriate `Stop` class method VI (ie. DAQ/Analog Input/AI_class/Stop AI.vi). You can view one of the example projects to see what that should look like.\n- All classes were made using NI GOOP, however GOOP is not needed to use these LabVIEW classes.\n- All classes will work in Labview 2016 and later\n\n\n## :bust_in_silhouette: Author\n**Ismet Handžić** - Github: [@ismet55555](https://github.com/ismet55555)\n\n\n## Licence\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fismet55555%2Flabview-oop-classes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fismet55555%2Flabview-oop-classes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fismet55555%2Flabview-oop-classes/lists"}