{"id":26399425,"url":"https://github.com/adoconnection/feig.net","last_synced_at":"2025-10-05T20:25:14.536Z","repository":{"id":75068040,"uuid":"65393776","full_name":"adoconnection/FEIG.NET","owner":"adoconnection","description":"Pure C# client for FEIG LRU readers","archived":false,"fork":false,"pushed_at":"2016-10-10T19:03:19.000Z","size":34,"stargazers_count":9,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-20T22:36:43.519Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adoconnection.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,"zenodo":null}},"created_at":"2016-08-10T15:25:59.000Z","updated_at":"2024-07-01T06:41:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"ee222e85-b920-466c-9034-f3e0bbdcfe58","html_url":"https://github.com/adoconnection/FEIG.NET","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/adoconnection/FEIG.NET","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoconnection%2FFEIG.NET","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoconnection%2FFEIG.NET/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoconnection%2FFEIG.NET/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoconnection%2FFEIG.NET/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adoconnection","download_url":"https://codeload.github.com/adoconnection/FEIG.NET/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adoconnection%2FFEIG.NET/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278512432,"owners_count":25999307,"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","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":"2025-03-17T13:20:31.261Z","updated_at":"2025-10-05T20:25:14.531Z","avatar_url":"https://github.com/adoconnection.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FEIG.NET\nPure C# client for FEIG LRU readers\n\nInventory sample:\n\n```cs\nusing (FeigReaderTcpConnection connection = new FeigReaderTcpConnection(\"192.168.1.125\", 10001))\n{\n    LRU1002Reader reader = new LRU1002Reader(connection);\n\n    IList\u003cFeigTag\u003e tags = reader.Inventory(FeigReaderAntenna.Antenna1, FeigReaderAntenna.Antenna2);\n\n    foreach (FeigTag tag in tags)\n    {\n        // process\n        // tag.Antenna\n        // tag.SerialNumber\n        // tag.RSSI\n    }\n}\n\n```\n\nChange tag serial number:\n\n```cs\nusing (FeigReaderTcpConnection connection = new FeigReaderTcpConnection(\"192.168.1.125\", 10001))\n{\n    LRU1002Reader reader = new LRU1002Reader(connection);\n\n    byte[] oldSerialNumber = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x12 };\n    byte[] newSerialNumber = { 0xE0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x1F };\n\n    bool isSuccess = reader.UpdateTagSerialNumber(oldSerialNumber, newSerialNumber);\n}\n```\n\nDiscovery sample:\n\n```cs\nFeigReaderDiscovery discovery = new FeigReaderDiscovery();\n\nIList\u003cNetworkInterface\u003e networkInterfaces = discovery.ListNetworkInterfaces();\nIDictionary\u003cNetworkInterface, List\u003cFeigReaderInfo\u003e\u003e pairs = discovery.FindReaders(networkInterfaces);\n\nforeach (KeyValuePair\u003cNetworkInterface, List\u003cFeigReaderInfo\u003e\u003e pair in pairs)\n{\n    Console.WriteLine(\"Network interface name: \" + pair.Key.Name);\n\n    foreach (FeigReaderInfo readerInfo in pair.Value)\n    {\n        Console.WriteLine(\" - \" + readerInfo.Type + \" - \" + ArrayToString(readerInfo.DeviceID) + \" - \" + readerInfo.IPAddress);\n    }\n}\n```\n\n\nConfiguration sample:\n\n```cs\nusing (FeigReaderTcpConnection connection = new FeigReaderTcpConnection(\"192.168.1.125\", 10001))\n{\n    LRU1002Reader reader = new LRU1002Reader(connection);\n\n    reader.InterfaceMode.ReaderMode = FeigReaderMode.HostMode;\n    reader.RFInterface.Antenna1Power = 1.1;\n    reader.RFInterface.Antenna2Power = 1.2;\n    reader.RFInterface.Antenna3Power = 1.3;\n    reader.RFInterface.Antenna4Power = 1.4;\n            \n    reader.ApplyConfigurationChanges();\n}\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadoconnection%2Ffeig.net","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadoconnection%2Ffeig.net","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadoconnection%2Ffeig.net/lists"}