├── .clang-format ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── make-ipa.yml ├── .gitignore ├── Battman-havoc-tipa-Info.plist ├── Battman-havoc.plist ├── Battman-nonfree.plist ├── Battman.entitlements ├── Battman.svg ├── Battman.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── Battman (rel-nonfree).xcscheme │ ├── Battman-havoc-tipa.xcscheme │ ├── Battman-havoc.xcscheme │ ├── Battman.xcscheme │ ├── base.pot.xcscheme │ └── pofiles_new.xcscheme ├── Battman ├── AnalyticsViewController.h ├── AnalyticsViewController.m ├── BatteryCellView │ ├── BatteryCellView.h │ ├── BatteryCellView.m │ ├── BatteryInfoTableViewCell.h │ ├── BatteryInfoTableViewCell.m │ ├── BrightnessInfoTableViewCell.h │ ├── BrightnessInfoTableViewCell.m │ ├── TemperatureInfoTableViewCell.h │ └── TemperatureInfoTableViewCell.m ├── BatteryDetailsViewController.h ├── BatteryDetailsViewController.m ├── BatteryInfoViewController.h ├── BatteryInfoViewController.m ├── BatterySubscriberViewControllerBase.c ├── BatterySubscriberViewControllerBase.h ├── BattmanPrefs.h ├── BattmanPrefs.m ├── BrightnessAdvancedViewController.h ├── BrightnessAdvancedViewController.m ├── BrightnessCardCell.h ├── BrightnessCardCell.m ├── BrightnessDetailsViewController.h ├── BrightnessDetailsViewController.m ├── CGIconSet │ ├── BattmanVectorIcon.h │ ├── BattmanVectorIcon.m │ ├── DesktopVectorIcon.h │ ├── DesktopVectorIcon.m │ ├── IPadHomeButtonVectorIcon.h │ ├── IPadHomeButtonVectorIcon.m │ ├── IPadVectorIcon.h │ ├── IPadVectorIcon.m │ ├── IPhoneD7VectorIcon.h │ ├── IPhoneD7VectorIcon.m │ ├── IPhoneHomeButtonVectorIcon.h │ ├── IPhoneHomeButtonVectorIcon.m │ ├── IPhoneVectorIcon.h │ ├── IPhoneVectorIcon.m │ ├── NightShiftVectorIcon.h │ ├── NightShiftVectorIcon.m │ ├── TrueToneVectorIcon.h │ └── TrueToneVectorIcon.m ├── CardProgressView.h ├── CardProgressView.m ├── ChargingLimitViewController.h ├── ChargingLimitViewController.m ├── ChargingManagementViewController.h ├── ChargingManagementViewController.m ├── ColorSegProgressView.h ├── ColorSegProgressView.m ├── CompatibilityHelper.c ├── CompatibilityHelper.h ├── CrashLogger.h ├── CrashLogger.m ├── CreditViewController.c ├── DatePickerCompactButton.h ├── DatePickerCompactButton.m ├── DatePickerTableViewCell.h ├── DatePickerTableViewCell.m ├── DonationPrompter.h ├── DonationPrompter.m ├── DonationViewController.h ├── DonationViewController.m ├── EXTERNAL_HEADERS │ ├── CADisplay.h │ └── IOAccessoryManager.h ├── FooterHyperlinkView.h ├── FooterHyperlinkView.m ├── FullSMCViewController.h ├── FullSMCViewController.m ├── GradientArcView.h ├── GradientArcView.m ├── GradientHDRView.h ├── GradientHDRView.m ├── GradientSDRView.h ├── GradientSDRView.m ├── Info.plist ├── LanguageSelectionViewController.h ├── LanguageSelectionViewController.m ├── Localizations │ ├── base.pot │ ├── de.po │ ├── en.po │ ├── generate_code.sh │ └── zh_CN.po ├── Makefile ├── MultilineViewCell.h ├── MultilineViewCell.m ├── ObjCExt │ ├── CALayer+smoothCorners.h │ ├── CALayer+smoothCorners.m │ ├── NSBundle+Auto.h │ ├── NSBundle+Auto.m │ ├── NSData+HexString.h │ ├── NSData+HexString.m │ ├── UIColor+compat.h │ ├── UIColor+compat.m │ ├── UIImage+SVG.h │ ├── UIImage+SVG.m │ ├── UIScreen+Auto.h │ └── UIScreen+Auto.m ├── PLBatteryUIMoveableGraphView.h ├── PLBatteryUIMoveableGraphView.m ├── PLGraphViewTableCell.h ├── PLGraphViewTableCell.m ├── PickerAccessoryView.h ├── PickerAccessoryView.m ├── PreferencesViewController.h ├── PreferencesViewController.m ├── SPWaterProgressIndicatorView.h ├── SPWaterProgressIndicatorView.m ├── SVG.h ├── SVG.m ├── SegmentedTextField.h ├── SegmentedTextField.m ├── SegmentedViewCell.h ├── SegmentedViewCell.m ├── SettingsViewController.h ├── SettingsViewController.m ├── SimpleTemperatureViewController.h ├── SimpleTemperatureViewController.m ├── SliderTableViewCell.h ├── SliderTableViewCell.m ├── ThermAniTestViewController.h ├── ThermAniTestViewController.m ├── ThermalTunesViewContoller.h ├── ThermalTunesViewContoller.m ├── UILabel+SFSymbolsOverride.h ├── UILabel+SFSymbolsOverride.m ├── UITextFieldStepper.h ├── UITextFieldStepper.m ├── UPSMonitor-new.m ├── UPSMonitor.h ├── UPSMonitor.m ├── UberSegmentedControl │ ├── Constants.h │ ├── Constants.m │ ├── DividerView.h │ ├── DividerView.m │ ├── MultiSelectSegmentedControl.h │ ├── MultiSelectSegmentedControl.m │ ├── README.md │ ├── SegmentButton.h │ ├── SegmentButton.m │ ├── StackViewGestureHandler.h │ ├── StackViewGestureHandler.m │ ├── UIView+Fill.h │ ├── UIView+Fill.m │ ├── UberSegmentedControl.h │ └── UberSegmentedControl.m ├── VirtBriCardCell.h ├── VirtBriCardCell.m ├── WarnAccessoryView.h ├── WarnAccessoryView.m ├── battery_utils │ ├── accessory.c │ ├── accessory.h │ ├── battery_info.c │ ├── battery_info.h │ ├── battery_utils.h │ ├── daemon.c │ ├── hid.m │ ├── inductive_status.h │ ├── iokit_connection.c │ ├── iokit_connection.h │ ├── kiosk_mode.h │ ├── libsmc.c │ ├── libsmc.h │ ├── not_charging_reason.h │ ├── pmnotification.c │ ├── smctest.c │ ├── thermal.c │ ├── thermal.h │ └── worker.c ├── brightness │ ├── BSC_Provider.m │ ├── backlight-control.c │ ├── dcp.c │ └── libbrightness.h ├── cobjc │ ├── NSIndexPath.h │ ├── NSObject.h │ ├── NSTimer.h │ ├── UIAlertController.h │ ├── UIApplication.h │ ├── UIColor.h │ ├── UILabel.h │ ├── UIScene.h │ ├── UITableView.h │ ├── UITableViewController.h │ ├── UIView.h │ ├── UIViewController.h │ ├── UIWindow.h │ ├── UNNotificationContent.h │ ├── UNNotificationRequest.h │ ├── UNNotificationTrigger.h │ ├── UNUserNotificationCenter.h │ ├── cobjc.h │ ├── cobjc_class.h │ ├── cobjc_types.h │ └── cpp_magic.h ├── common.c ├── common.h ├── control ├── gen_locale_hashes.py ├── generate_icons.sh ├── glibextern.h ├── gtkextern.h ├── hw │ ├── IOMFB_interaction.c │ └── IOMFB_interaction.h ├── intlextern.h ├── iokitextern.h ├── license │ ├── license.html │ ├── license.tex │ ├── licensing.S │ ├── localized.c │ └── test.S ├── main.h ├── main.m ├── scprefs │ ├── README.md │ ├── scprefs.h │ ├── wrapper.c │ └── wrapper.h ├── security │ ├── protect.S │ ├── protect.h │ ├── selfcheck.c │ └── selfcheck.h └── xpcextern.h ├── BattmanIcons@2x.artwork ├── BattmanIcons@3x.artwork ├── Battman_inkscape.svg ├── Config.xcconfig ├── LICENSE ├── LICENSE-en_GB.md ├── LICENSE-en_US.md ├── LICENSE-zh_CN.md └── LICENSE.md ├── README.md ├── Screenshots ├── Adapter-zh_CN.png ├── Adapter.png ├── ChargingLimit-zh_CN.png ├── ChargingLimit.png ├── ChargingMgmt-zh_CN.png ├── ChargingMgmt.png ├── Gas Gauge-1-zh_CN.png ├── Gas Gauge-1.png ├── Gas Gauge-zh_CN.png ├── Gas Gauge.png ├── Inductive-1-zh_CN.png ├── Inductive-1.png ├── Inductive-zh_CN.png ├── Inductive.png ├── Main-zh_CN.png ├── Main.png ├── Serial-zh_CN.png ├── Serial.png ├── Temperature-zh_CN.png ├── Temperature.png ├── Thermal-zh_CN.png └── Thermal.png ├── docs └── README-zh_CN.md ├── gettext.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── Automake.xcscheme ├── libIOAccessoryManager-sim.tbd ├── libintl-framework.tbd ├── libintl-rootless.tbd ├── libintl.tbd ├── patches ├── 01-libproc.diff └── 02-canonicalize-locale.diff └── utils ├── atmos_temperature └── atmos_temperature.c ├── thermhid ├── Makefile ├── ios.entitlements ├── thermhid.c └── thermhid_nomacsdk.c ├── thermnote └── thermnote.c └── thermwatch └── thermwatch.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/make-ipa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/.github/workflows/make-ipa.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/.gitignore -------------------------------------------------------------------------------- /Battman-havoc-tipa-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman-havoc-tipa-Info.plist -------------------------------------------------------------------------------- /Battman-havoc.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman-havoc.plist -------------------------------------------------------------------------------- /Battman-nonfree.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman-nonfree.plist -------------------------------------------------------------------------------- /Battman.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman.entitlements -------------------------------------------------------------------------------- /Battman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman.svg -------------------------------------------------------------------------------- /Battman.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Battman.xcodeproj/xcshareddata/xcschemes/Battman (rel-nonfree).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman.xcodeproj/xcshareddata/xcschemes/Battman (rel-nonfree).xcscheme -------------------------------------------------------------------------------- /Battman.xcodeproj/xcshareddata/xcschemes/Battman-havoc-tipa.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman.xcodeproj/xcshareddata/xcschemes/Battman-havoc-tipa.xcscheme -------------------------------------------------------------------------------- /Battman.xcodeproj/xcshareddata/xcschemes/Battman-havoc.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman.xcodeproj/xcshareddata/xcschemes/Battman-havoc.xcscheme -------------------------------------------------------------------------------- /Battman.xcodeproj/xcshareddata/xcschemes/Battman.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman.xcodeproj/xcshareddata/xcschemes/Battman.xcscheme -------------------------------------------------------------------------------- /Battman.xcodeproj/xcshareddata/xcschemes/base.pot.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman.xcodeproj/xcshareddata/xcschemes/base.pot.xcscheme -------------------------------------------------------------------------------- /Battman.xcodeproj/xcshareddata/xcschemes/pofiles_new.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman.xcodeproj/xcshareddata/xcschemes/pofiles_new.xcscheme -------------------------------------------------------------------------------- /Battman/AnalyticsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/AnalyticsViewController.h -------------------------------------------------------------------------------- /Battman/AnalyticsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/AnalyticsViewController.m -------------------------------------------------------------------------------- /Battman/BatteryCellView/BatteryCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatteryCellView/BatteryCellView.h -------------------------------------------------------------------------------- /Battman/BatteryCellView/BatteryCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatteryCellView/BatteryCellView.m -------------------------------------------------------------------------------- /Battman/BatteryCellView/BatteryInfoTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatteryCellView/BatteryInfoTableViewCell.h -------------------------------------------------------------------------------- /Battman/BatteryCellView/BatteryInfoTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatteryCellView/BatteryInfoTableViewCell.m -------------------------------------------------------------------------------- /Battman/BatteryCellView/BrightnessInfoTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatteryCellView/BrightnessInfoTableViewCell.h -------------------------------------------------------------------------------- /Battman/BatteryCellView/BrightnessInfoTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatteryCellView/BrightnessInfoTableViewCell.m -------------------------------------------------------------------------------- /Battman/BatteryCellView/TemperatureInfoTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatteryCellView/TemperatureInfoTableViewCell.h -------------------------------------------------------------------------------- /Battman/BatteryCellView/TemperatureInfoTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatteryCellView/TemperatureInfoTableViewCell.m -------------------------------------------------------------------------------- /Battman/BatteryDetailsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatteryDetailsViewController.h -------------------------------------------------------------------------------- /Battman/BatteryDetailsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatteryDetailsViewController.m -------------------------------------------------------------------------------- /Battman/BatteryInfoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatteryInfoViewController.h -------------------------------------------------------------------------------- /Battman/BatteryInfoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatteryInfoViewController.m -------------------------------------------------------------------------------- /Battman/BatterySubscriberViewControllerBase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatterySubscriberViewControllerBase.c -------------------------------------------------------------------------------- /Battman/BatterySubscriberViewControllerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BatterySubscriberViewControllerBase.h -------------------------------------------------------------------------------- /Battman/BattmanPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BattmanPrefs.h -------------------------------------------------------------------------------- /Battman/BattmanPrefs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BattmanPrefs.m -------------------------------------------------------------------------------- /Battman/BrightnessAdvancedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BrightnessAdvancedViewController.h -------------------------------------------------------------------------------- /Battman/BrightnessAdvancedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BrightnessAdvancedViewController.m -------------------------------------------------------------------------------- /Battman/BrightnessCardCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BrightnessCardCell.h -------------------------------------------------------------------------------- /Battman/BrightnessCardCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BrightnessCardCell.m -------------------------------------------------------------------------------- /Battman/BrightnessDetailsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BrightnessDetailsViewController.h -------------------------------------------------------------------------------- /Battman/BrightnessDetailsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/BrightnessDetailsViewController.m -------------------------------------------------------------------------------- /Battman/CGIconSet/BattmanVectorIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/BattmanVectorIcon.h -------------------------------------------------------------------------------- /Battman/CGIconSet/BattmanVectorIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/BattmanVectorIcon.m -------------------------------------------------------------------------------- /Battman/CGIconSet/DesktopVectorIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/DesktopVectorIcon.h -------------------------------------------------------------------------------- /Battman/CGIconSet/DesktopVectorIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/DesktopVectorIcon.m -------------------------------------------------------------------------------- /Battman/CGIconSet/IPadHomeButtonVectorIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/IPadHomeButtonVectorIcon.h -------------------------------------------------------------------------------- /Battman/CGIconSet/IPadHomeButtonVectorIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/IPadHomeButtonVectorIcon.m -------------------------------------------------------------------------------- /Battman/CGIconSet/IPadVectorIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/IPadVectorIcon.h -------------------------------------------------------------------------------- /Battman/CGIconSet/IPadVectorIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/IPadVectorIcon.m -------------------------------------------------------------------------------- /Battman/CGIconSet/IPhoneD7VectorIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/IPhoneD7VectorIcon.h -------------------------------------------------------------------------------- /Battman/CGIconSet/IPhoneD7VectorIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/IPhoneD7VectorIcon.m -------------------------------------------------------------------------------- /Battman/CGIconSet/IPhoneHomeButtonVectorIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/IPhoneHomeButtonVectorIcon.h -------------------------------------------------------------------------------- /Battman/CGIconSet/IPhoneHomeButtonVectorIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/IPhoneHomeButtonVectorIcon.m -------------------------------------------------------------------------------- /Battman/CGIconSet/IPhoneVectorIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/IPhoneVectorIcon.h -------------------------------------------------------------------------------- /Battman/CGIconSet/IPhoneVectorIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/IPhoneVectorIcon.m -------------------------------------------------------------------------------- /Battman/CGIconSet/NightShiftVectorIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/NightShiftVectorIcon.h -------------------------------------------------------------------------------- /Battman/CGIconSet/NightShiftVectorIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/NightShiftVectorIcon.m -------------------------------------------------------------------------------- /Battman/CGIconSet/TrueToneVectorIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/TrueToneVectorIcon.h -------------------------------------------------------------------------------- /Battman/CGIconSet/TrueToneVectorIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CGIconSet/TrueToneVectorIcon.m -------------------------------------------------------------------------------- /Battman/CardProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CardProgressView.h -------------------------------------------------------------------------------- /Battman/CardProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CardProgressView.m -------------------------------------------------------------------------------- /Battman/ChargingLimitViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ChargingLimitViewController.h -------------------------------------------------------------------------------- /Battman/ChargingLimitViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ChargingLimitViewController.m -------------------------------------------------------------------------------- /Battman/ChargingManagementViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ChargingManagementViewController.h -------------------------------------------------------------------------------- /Battman/ChargingManagementViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ChargingManagementViewController.m -------------------------------------------------------------------------------- /Battman/ColorSegProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ColorSegProgressView.h -------------------------------------------------------------------------------- /Battman/ColorSegProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ColorSegProgressView.m -------------------------------------------------------------------------------- /Battman/CompatibilityHelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CompatibilityHelper.c -------------------------------------------------------------------------------- /Battman/CompatibilityHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CompatibilityHelper.h -------------------------------------------------------------------------------- /Battman/CrashLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CrashLogger.h -------------------------------------------------------------------------------- /Battman/CrashLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CrashLogger.m -------------------------------------------------------------------------------- /Battman/CreditViewController.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/CreditViewController.c -------------------------------------------------------------------------------- /Battman/DatePickerCompactButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/DatePickerCompactButton.h -------------------------------------------------------------------------------- /Battman/DatePickerCompactButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/DatePickerCompactButton.m -------------------------------------------------------------------------------- /Battman/DatePickerTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/DatePickerTableViewCell.h -------------------------------------------------------------------------------- /Battman/DatePickerTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/DatePickerTableViewCell.m -------------------------------------------------------------------------------- /Battman/DonationPrompter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/DonationPrompter.h -------------------------------------------------------------------------------- /Battman/DonationPrompter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/DonationPrompter.m -------------------------------------------------------------------------------- /Battman/DonationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/DonationViewController.h -------------------------------------------------------------------------------- /Battman/DonationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/DonationViewController.m -------------------------------------------------------------------------------- /Battman/EXTERNAL_HEADERS/CADisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/EXTERNAL_HEADERS/CADisplay.h -------------------------------------------------------------------------------- /Battman/EXTERNAL_HEADERS/IOAccessoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/EXTERNAL_HEADERS/IOAccessoryManager.h -------------------------------------------------------------------------------- /Battman/FooterHyperlinkView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/FooterHyperlinkView.h -------------------------------------------------------------------------------- /Battman/FooterHyperlinkView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/FooterHyperlinkView.m -------------------------------------------------------------------------------- /Battman/FullSMCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/FullSMCViewController.h -------------------------------------------------------------------------------- /Battman/FullSMCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/FullSMCViewController.m -------------------------------------------------------------------------------- /Battman/GradientArcView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/GradientArcView.h -------------------------------------------------------------------------------- /Battman/GradientArcView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/GradientArcView.m -------------------------------------------------------------------------------- /Battman/GradientHDRView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/GradientHDRView.h -------------------------------------------------------------------------------- /Battman/GradientHDRView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/GradientHDRView.m -------------------------------------------------------------------------------- /Battman/GradientSDRView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/GradientSDRView.h -------------------------------------------------------------------------------- /Battman/GradientSDRView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/GradientSDRView.m -------------------------------------------------------------------------------- /Battman/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/Info.plist -------------------------------------------------------------------------------- /Battman/LanguageSelectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/LanguageSelectionViewController.h -------------------------------------------------------------------------------- /Battman/LanguageSelectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/LanguageSelectionViewController.m -------------------------------------------------------------------------------- /Battman/Localizations/base.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/Localizations/base.pot -------------------------------------------------------------------------------- /Battman/Localizations/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/Localizations/de.po -------------------------------------------------------------------------------- /Battman/Localizations/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/Localizations/en.po -------------------------------------------------------------------------------- /Battman/Localizations/generate_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/Localizations/generate_code.sh -------------------------------------------------------------------------------- /Battman/Localizations/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/Localizations/zh_CN.po -------------------------------------------------------------------------------- /Battman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/Makefile -------------------------------------------------------------------------------- /Battman/MultilineViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/MultilineViewCell.h -------------------------------------------------------------------------------- /Battman/MultilineViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/MultilineViewCell.m -------------------------------------------------------------------------------- /Battman/ObjCExt/CALayer+smoothCorners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ObjCExt/CALayer+smoothCorners.h -------------------------------------------------------------------------------- /Battman/ObjCExt/CALayer+smoothCorners.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ObjCExt/CALayer+smoothCorners.m -------------------------------------------------------------------------------- /Battman/ObjCExt/NSBundle+Auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ObjCExt/NSBundle+Auto.h -------------------------------------------------------------------------------- /Battman/ObjCExt/NSBundle+Auto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ObjCExt/NSBundle+Auto.m -------------------------------------------------------------------------------- /Battman/ObjCExt/NSData+HexString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ObjCExt/NSData+HexString.h -------------------------------------------------------------------------------- /Battman/ObjCExt/NSData+HexString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ObjCExt/NSData+HexString.m -------------------------------------------------------------------------------- /Battman/ObjCExt/UIColor+compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ObjCExt/UIColor+compat.h -------------------------------------------------------------------------------- /Battman/ObjCExt/UIColor+compat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ObjCExt/UIColor+compat.m -------------------------------------------------------------------------------- /Battman/ObjCExt/UIImage+SVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ObjCExt/UIImage+SVG.h -------------------------------------------------------------------------------- /Battman/ObjCExt/UIImage+SVG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ObjCExt/UIImage+SVG.m -------------------------------------------------------------------------------- /Battman/ObjCExt/UIScreen+Auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ObjCExt/UIScreen+Auto.h -------------------------------------------------------------------------------- /Battman/ObjCExt/UIScreen+Auto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ObjCExt/UIScreen+Auto.m -------------------------------------------------------------------------------- /Battman/PLBatteryUIMoveableGraphView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/PLBatteryUIMoveableGraphView.h -------------------------------------------------------------------------------- /Battman/PLBatteryUIMoveableGraphView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/PLBatteryUIMoveableGraphView.m -------------------------------------------------------------------------------- /Battman/PLGraphViewTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/PLGraphViewTableCell.h -------------------------------------------------------------------------------- /Battman/PLGraphViewTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/PLGraphViewTableCell.m -------------------------------------------------------------------------------- /Battman/PickerAccessoryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/PickerAccessoryView.h -------------------------------------------------------------------------------- /Battman/PickerAccessoryView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/PickerAccessoryView.m -------------------------------------------------------------------------------- /Battman/PreferencesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/PreferencesViewController.h -------------------------------------------------------------------------------- /Battman/PreferencesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/PreferencesViewController.m -------------------------------------------------------------------------------- /Battman/SPWaterProgressIndicatorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SPWaterProgressIndicatorView.h -------------------------------------------------------------------------------- /Battman/SPWaterProgressIndicatorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SPWaterProgressIndicatorView.m -------------------------------------------------------------------------------- /Battman/SVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SVG.h -------------------------------------------------------------------------------- /Battman/SVG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SVG.m -------------------------------------------------------------------------------- /Battman/SegmentedTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SegmentedTextField.h -------------------------------------------------------------------------------- /Battman/SegmentedTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SegmentedTextField.m -------------------------------------------------------------------------------- /Battman/SegmentedViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SegmentedViewCell.h -------------------------------------------------------------------------------- /Battman/SegmentedViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SegmentedViewCell.m -------------------------------------------------------------------------------- /Battman/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SettingsViewController.h -------------------------------------------------------------------------------- /Battman/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SettingsViewController.m -------------------------------------------------------------------------------- /Battman/SimpleTemperatureViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SimpleTemperatureViewController.h -------------------------------------------------------------------------------- /Battman/SimpleTemperatureViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SimpleTemperatureViewController.m -------------------------------------------------------------------------------- /Battman/SliderTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SliderTableViewCell.h -------------------------------------------------------------------------------- /Battman/SliderTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/SliderTableViewCell.m -------------------------------------------------------------------------------- /Battman/ThermAniTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ThermAniTestViewController.h -------------------------------------------------------------------------------- /Battman/ThermAniTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ThermAniTestViewController.m -------------------------------------------------------------------------------- /Battman/ThermalTunesViewContoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ThermalTunesViewContoller.h -------------------------------------------------------------------------------- /Battman/ThermalTunesViewContoller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/ThermalTunesViewContoller.m -------------------------------------------------------------------------------- /Battman/UILabel+SFSymbolsOverride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UILabel+SFSymbolsOverride.h -------------------------------------------------------------------------------- /Battman/UILabel+SFSymbolsOverride.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UILabel+SFSymbolsOverride.m -------------------------------------------------------------------------------- /Battman/UITextFieldStepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UITextFieldStepper.h -------------------------------------------------------------------------------- /Battman/UITextFieldStepper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UITextFieldStepper.m -------------------------------------------------------------------------------- /Battman/UPSMonitor-new.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UPSMonitor-new.m -------------------------------------------------------------------------------- /Battman/UPSMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UPSMonitor.h -------------------------------------------------------------------------------- /Battman/UPSMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UPSMonitor.m -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/Constants.h -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/Constants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/Constants.m -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/DividerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/DividerView.h -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/DividerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/DividerView.m -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/MultiSelectSegmentedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/MultiSelectSegmentedControl.h -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/MultiSelectSegmentedControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/MultiSelectSegmentedControl.m -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/README.md -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/SegmentButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/SegmentButton.h -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/SegmentButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/SegmentButton.m -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/StackViewGestureHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/StackViewGestureHandler.h -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/StackViewGestureHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/StackViewGestureHandler.m -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/UIView+Fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/UIView+Fill.h -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/UIView+Fill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/UIView+Fill.m -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/UberSegmentedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/UberSegmentedControl.h -------------------------------------------------------------------------------- /Battman/UberSegmentedControl/UberSegmentedControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/UberSegmentedControl/UberSegmentedControl.m -------------------------------------------------------------------------------- /Battman/VirtBriCardCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/VirtBriCardCell.h -------------------------------------------------------------------------------- /Battman/VirtBriCardCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/VirtBriCardCell.m -------------------------------------------------------------------------------- /Battman/WarnAccessoryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/WarnAccessoryView.h -------------------------------------------------------------------------------- /Battman/WarnAccessoryView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/WarnAccessoryView.m -------------------------------------------------------------------------------- /Battman/battery_utils/accessory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/accessory.c -------------------------------------------------------------------------------- /Battman/battery_utils/accessory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/accessory.h -------------------------------------------------------------------------------- /Battman/battery_utils/battery_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/battery_info.c -------------------------------------------------------------------------------- /Battman/battery_utils/battery_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/battery_info.h -------------------------------------------------------------------------------- /Battman/battery_utils/battery_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/battery_utils.h -------------------------------------------------------------------------------- /Battman/battery_utils/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/daemon.c -------------------------------------------------------------------------------- /Battman/battery_utils/hid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/hid.m -------------------------------------------------------------------------------- /Battman/battery_utils/inductive_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/inductive_status.h -------------------------------------------------------------------------------- /Battman/battery_utils/iokit_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/iokit_connection.c -------------------------------------------------------------------------------- /Battman/battery_utils/iokit_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/iokit_connection.h -------------------------------------------------------------------------------- /Battman/battery_utils/kiosk_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/kiosk_mode.h -------------------------------------------------------------------------------- /Battman/battery_utils/libsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/libsmc.c -------------------------------------------------------------------------------- /Battman/battery_utils/libsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/libsmc.h -------------------------------------------------------------------------------- /Battman/battery_utils/not_charging_reason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/not_charging_reason.h -------------------------------------------------------------------------------- /Battman/battery_utils/pmnotification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/pmnotification.c -------------------------------------------------------------------------------- /Battman/battery_utils/smctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/smctest.c -------------------------------------------------------------------------------- /Battman/battery_utils/thermal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/thermal.c -------------------------------------------------------------------------------- /Battman/battery_utils/thermal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/thermal.h -------------------------------------------------------------------------------- /Battman/battery_utils/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/battery_utils/worker.c -------------------------------------------------------------------------------- /Battman/brightness/BSC_Provider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/brightness/BSC_Provider.m -------------------------------------------------------------------------------- /Battman/brightness/backlight-control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/brightness/backlight-control.c -------------------------------------------------------------------------------- /Battman/brightness/dcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/brightness/dcp.c -------------------------------------------------------------------------------- /Battman/brightness/libbrightness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/brightness/libbrightness.h -------------------------------------------------------------------------------- /Battman/cobjc/NSIndexPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/NSIndexPath.h -------------------------------------------------------------------------------- /Battman/cobjc/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/NSObject.h -------------------------------------------------------------------------------- /Battman/cobjc/NSTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/NSTimer.h -------------------------------------------------------------------------------- /Battman/cobjc/UIAlertController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UIAlertController.h -------------------------------------------------------------------------------- /Battman/cobjc/UIApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UIApplication.h -------------------------------------------------------------------------------- /Battman/cobjc/UIColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UIColor.h -------------------------------------------------------------------------------- /Battman/cobjc/UILabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UILabel.h -------------------------------------------------------------------------------- /Battman/cobjc/UIScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UIScene.h -------------------------------------------------------------------------------- /Battman/cobjc/UITableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UITableView.h -------------------------------------------------------------------------------- /Battman/cobjc/UITableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UITableViewController.h -------------------------------------------------------------------------------- /Battman/cobjc/UIView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UIView.h -------------------------------------------------------------------------------- /Battman/cobjc/UIViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UIViewController.h -------------------------------------------------------------------------------- /Battman/cobjc/UIWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UIWindow.h -------------------------------------------------------------------------------- /Battman/cobjc/UNNotificationContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UNNotificationContent.h -------------------------------------------------------------------------------- /Battman/cobjc/UNNotificationRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UNNotificationRequest.h -------------------------------------------------------------------------------- /Battman/cobjc/UNNotificationTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UNNotificationTrigger.h -------------------------------------------------------------------------------- /Battman/cobjc/UNUserNotificationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/UNUserNotificationCenter.h -------------------------------------------------------------------------------- /Battman/cobjc/cobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/cobjc.h -------------------------------------------------------------------------------- /Battman/cobjc/cobjc_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/cobjc_class.h -------------------------------------------------------------------------------- /Battman/cobjc/cobjc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/cobjc_types.h -------------------------------------------------------------------------------- /Battman/cobjc/cpp_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/cobjc/cpp_magic.h -------------------------------------------------------------------------------- /Battman/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/common.c -------------------------------------------------------------------------------- /Battman/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/common.h -------------------------------------------------------------------------------- /Battman/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/control -------------------------------------------------------------------------------- /Battman/gen_locale_hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/gen_locale_hashes.py -------------------------------------------------------------------------------- /Battman/generate_icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/generate_icons.sh -------------------------------------------------------------------------------- /Battman/glibextern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/glibextern.h -------------------------------------------------------------------------------- /Battman/gtkextern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/gtkextern.h -------------------------------------------------------------------------------- /Battman/hw/IOMFB_interaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/hw/IOMFB_interaction.c -------------------------------------------------------------------------------- /Battman/hw/IOMFB_interaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/hw/IOMFB_interaction.h -------------------------------------------------------------------------------- /Battman/intlextern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/intlextern.h -------------------------------------------------------------------------------- /Battman/iokitextern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/iokitextern.h -------------------------------------------------------------------------------- /Battman/license/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/license/license.html -------------------------------------------------------------------------------- /Battman/license/license.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/license/license.tex -------------------------------------------------------------------------------- /Battman/license/licensing.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/license/licensing.S -------------------------------------------------------------------------------- /Battman/license/localized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/license/localized.c -------------------------------------------------------------------------------- /Battman/license/test.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/license/test.S -------------------------------------------------------------------------------- /Battman/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/main.h -------------------------------------------------------------------------------- /Battman/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/main.m -------------------------------------------------------------------------------- /Battman/scprefs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/scprefs/README.md -------------------------------------------------------------------------------- /Battman/scprefs/scprefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/scprefs/scprefs.h -------------------------------------------------------------------------------- /Battman/scprefs/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/scprefs/wrapper.c -------------------------------------------------------------------------------- /Battman/scprefs/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/scprefs/wrapper.h -------------------------------------------------------------------------------- /Battman/security/protect.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/security/protect.S -------------------------------------------------------------------------------- /Battman/security/protect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/security/protect.h -------------------------------------------------------------------------------- /Battman/security/selfcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/security/selfcheck.c -------------------------------------------------------------------------------- /Battman/security/selfcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/security/selfcheck.h -------------------------------------------------------------------------------- /Battman/xpcextern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman/xpcextern.h -------------------------------------------------------------------------------- /BattmanIcons@2x.artwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/BattmanIcons@2x.artwork -------------------------------------------------------------------------------- /BattmanIcons@3x.artwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/BattmanIcons@3x.artwork -------------------------------------------------------------------------------- /Battman_inkscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Battman_inkscape.svg -------------------------------------------------------------------------------- /Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Config.xcconfig -------------------------------------------------------------------------------- /LICENSE/LICENSE-en_GB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/LICENSE/LICENSE-en_GB.md -------------------------------------------------------------------------------- /LICENSE/LICENSE-en_US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/LICENSE/LICENSE-en_US.md -------------------------------------------------------------------------------- /LICENSE/LICENSE-zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/LICENSE/LICENSE-zh_CN.md -------------------------------------------------------------------------------- /LICENSE/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/LICENSE/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Adapter-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Adapter-zh_CN.png -------------------------------------------------------------------------------- /Screenshots/Adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Adapter.png -------------------------------------------------------------------------------- /Screenshots/ChargingLimit-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/ChargingLimit-zh_CN.png -------------------------------------------------------------------------------- /Screenshots/ChargingLimit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/ChargingLimit.png -------------------------------------------------------------------------------- /Screenshots/ChargingMgmt-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/ChargingMgmt-zh_CN.png -------------------------------------------------------------------------------- /Screenshots/ChargingMgmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/ChargingMgmt.png -------------------------------------------------------------------------------- /Screenshots/Gas Gauge-1-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Gas Gauge-1-zh_CN.png -------------------------------------------------------------------------------- /Screenshots/Gas Gauge-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Gas Gauge-1.png -------------------------------------------------------------------------------- /Screenshots/Gas Gauge-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Gas Gauge-zh_CN.png -------------------------------------------------------------------------------- /Screenshots/Gas Gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Gas Gauge.png -------------------------------------------------------------------------------- /Screenshots/Inductive-1-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Inductive-1-zh_CN.png -------------------------------------------------------------------------------- /Screenshots/Inductive-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Inductive-1.png -------------------------------------------------------------------------------- /Screenshots/Inductive-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Inductive-zh_CN.png -------------------------------------------------------------------------------- /Screenshots/Inductive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Inductive.png -------------------------------------------------------------------------------- /Screenshots/Main-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Main-zh_CN.png -------------------------------------------------------------------------------- /Screenshots/Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Main.png -------------------------------------------------------------------------------- /Screenshots/Serial-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Serial-zh_CN.png -------------------------------------------------------------------------------- /Screenshots/Serial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Serial.png -------------------------------------------------------------------------------- /Screenshots/Temperature-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Temperature-zh_CN.png -------------------------------------------------------------------------------- /Screenshots/Temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Temperature.png -------------------------------------------------------------------------------- /Screenshots/Thermal-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Thermal-zh_CN.png -------------------------------------------------------------------------------- /Screenshots/Thermal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/Screenshots/Thermal.png -------------------------------------------------------------------------------- /docs/README-zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/docs/README-zh_CN.md -------------------------------------------------------------------------------- /gettext.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/gettext.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /gettext.xcodeproj/xcshareddata/xcschemes/Automake.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/gettext.xcodeproj/xcshareddata/xcschemes/Automake.xcscheme -------------------------------------------------------------------------------- /libIOAccessoryManager-sim.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/libIOAccessoryManager-sim.tbd -------------------------------------------------------------------------------- /libintl-framework.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/libintl-framework.tbd -------------------------------------------------------------------------------- /libintl-rootless.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/libintl-rootless.tbd -------------------------------------------------------------------------------- /libintl.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/libintl.tbd -------------------------------------------------------------------------------- /patches/01-libproc.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/patches/01-libproc.diff -------------------------------------------------------------------------------- /patches/02-canonicalize-locale.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/patches/02-canonicalize-locale.diff -------------------------------------------------------------------------------- /utils/atmos_temperature/atmos_temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/utils/atmos_temperature/atmos_temperature.c -------------------------------------------------------------------------------- /utils/thermhid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/utils/thermhid/Makefile -------------------------------------------------------------------------------- /utils/thermhid/ios.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/utils/thermhid/ios.entitlements -------------------------------------------------------------------------------- /utils/thermhid/thermhid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/utils/thermhid/thermhid.c -------------------------------------------------------------------------------- /utils/thermhid/thermhid_nomacsdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/utils/thermhid/thermhid_nomacsdk.c -------------------------------------------------------------------------------- /utils/thermnote/thermnote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/utils/thermnote/thermnote.c -------------------------------------------------------------------------------- /utils/thermwatch/thermwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Torrekie/Battman/HEAD/utils/thermwatch/thermwatch.c --------------------------------------------------------------------------------