Repository for exploring OSX IORegistry
Module for traversing IORegistry using keys:
Example of returning pmgr
properties under the AppleARMIODevice
registry:
NSDictionary * pmgrProperties = [IOServiceRegistry alloc] init:@"AppleARMIODevice"][@"pmgr"]
Example of parsing voltage states from voltage-states9
(GPU) property in pmgr
entry:
NSLog(@"%@", [IOHelper getDVFS:[[IOServiceRegistry alloc] init:@"AppleARMIODevice"][@"pmgr"]:@"voltage-states9"]);