{"id":1237,"url":"https://github.com/gulfcoastdev/JMCBeaconManager","last_synced_at":"2025-07-30T20:33:02.060Z","repository":{"id":29668340,"uuid":"33210540","full_name":"izotx/JMCBeaconManager","owner":"izotx","description":"iBeacon Manager","archived":false,"fork":false,"pushed_at":"2016-08-11T15:30:49.000Z","size":1744,"stargazers_count":148,"open_issues_count":1,"forks_count":19,"subscribers_count":8,"default_branch":"master","last_synced_at":"2024-04-26T00:05:16.749Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Swift","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/izotx.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}},"created_at":"2015-03-31T21:19:23.000Z","updated_at":"2024-03-06T07:03:05.000Z","dependencies_parsed_at":"2022-08-21T03:50:50.351Z","dependency_job_id":null,"html_url":"https://github.com/izotx/JMCBeaconManager","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/izotx%2FJMCBeaconManager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/izotx%2FJMCBeaconManager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/izotx%2FJMCBeaconManager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/izotx%2FJMCBeaconManager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/izotx","download_url":"https://codeload.github.com/izotx/JMCBeaconManager/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228187609,"owners_count":17882335,"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-01-05T20:15:41.935Z","updated_at":"2025-07-30T20:32:55.744Z","avatar_url":"https://github.com/izotx.png","language":"Swift","funding_links":[],"categories":["Hardware","Swift","Swift 3 Port"],"sub_categories":["iBeacon","Other free courses"],"readme":"# JMCiBeaconManager\n\u003e iBeacon is a name of technology that is enabling new location awareness possibilities for apps.\n\"Leveraging Bluetooth Low Energy (BLE), a device with iBeacon technology \ncan be used to establish a region around an object. This allows an iOS device to determine when it has entered or left the region, along with an estimation of proximity to a beacon.\"  \n🔶\n\nAn iBeacon Manager library was created to simplify your interactions with iBeacons. In essence it serves several roles:\n\n1. Checking the iBeacon permission matrix \n2. Registering \u0026 listening for nearby beacons\n3. Detecting nearby beacons \n4. Visualizing nearby beacons in a radar look like custom made user interface.\n\n \n\n[![Version](https://img.shields.io/cocoapods/v/JMCiBeaconManager.svg?style=flat)](http://cocoapods.org/pods/JMCiBeaconManager)\n[![License](https://img.shields.io/cocoapods/l/JMCiBeaconManager.svg?style=flat)](http://cocoapods.org/pods/JMCiBeaconManager)\n[![Platform](https://img.shields.io/cocoapods/p/JMCiBeaconManager.svg?style=flat)](http://cocoapods.org/pods/JMCiBeaconManager)\n\n![alt tag](https://github.com/appzzman/JMCBeaconManager/blob/pr/1/iPadGif.gif)\n![alt tag](https://raw.githubusercontent.com/appzzman/JMCBeaconManager/pr/1/iPhoneGif.gif)\n\n\n## Example\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n## Installation\n\n#### CocoaPods\nJMCiBeaconManager is available through [CocoaPods](http://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod \"JMCiBeaconManager\"\n```\n\n#### Manually\n1. Download and drop ```/JMCiBeaconManager```folder in your project.  \n2. Congratulations! \n\n\n## Usage\n\n```Swift \nimport JMCiBeaconManager\n\nlet beaconManager = JMCBeaconManager()\n\nlet kontaktIOBeacon = iBeacon(minor: nil, major: nil, proximityId: \"f7826da6-4fa2-4e98-8024-bc5b71e0893e\")\nlet estimoteBeacon = iBeacon(minor: nil, major: nil, proximityId: \"B9407F30-F5F8-466E-AFF9-25556B57FE6D\")\n\nbeaconManager.registerBeacons([kontaktIOBeacon, estimoteBeacon])\n\nNSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(beaconsRanged(_:)), name: iBeaconNotifications.BeaconProximity.rawValue, object: nil)\n\nbeaconManager.startMonitoring({ \n            \n    }) { (messages) in\n        print(\"Error Messages \\(messages)\")\n}\n\n/**Called when the beacons are ranged*/\nfunc beaconsRanged(notification:NSNotification){\n    if let visibleIbeacons = notification.object as? [iBeacon]{\n        for beacon in visibleIbeacons{\n            /// Do something with the iBeacon\n        }\n    }\n}  \n\n\n```\n\n\nAdd the key ```NSLocationAlwaysUsageDescription``` to your project info.plist file.\n\n![alt tag](https://raw.githubusercontent.com/izotx/JMCBeaconManager/master/NSLocationAlwaysUsageDescription.png)\n\n## Authors\n\nJanusz Chudzynski, \u003cjanusz@izotx.com\u003e\n\nFelipe N. Brito, \u003cfelipenevesbrito@gmail.com\u003e\n\n## Contribute\n\nWe would love for you to contribute to **JMCiBeaconManager**, check the ``LICENSE`` file for more info.\n\n## Requirements\n\n- iOS 8.0+\n- Xcode 7.3\n\n## License\n\nJMCiBeaconManager is available under the ```BSD``` license. See the ```LICENSE``` file for more info.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgulfcoastdev%2FJMCBeaconManager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgulfcoastdev%2FJMCBeaconManager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgulfcoastdev%2FJMCBeaconManager/lists"}