-
-
Notifications
You must be signed in to change notification settings - Fork 959
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into simple-calculator
- Loading branch information
Showing
39 changed files
with
623 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#pragma once | ||
|
||
namespace Pinetime { | ||
namespace Applications { | ||
class DisplayApp; | ||
} | ||
|
||
namespace Components { | ||
class LittleVgl; | ||
} | ||
|
||
namespace Controllers { | ||
class Battery; | ||
class Ble; | ||
class DateTime; | ||
class NotificationManager; | ||
class HeartRateController; | ||
class Settings; | ||
class MotorController; | ||
class MotionController; | ||
class AlarmController; | ||
class BrightnessController; | ||
class WeatherService; | ||
class FS; | ||
class Timer; | ||
class MusicService; | ||
class NavigationService; | ||
} | ||
|
||
namespace System { | ||
class SystemTask; | ||
} | ||
|
||
namespace Applications { | ||
struct AppControllers { | ||
const Pinetime::Controllers::Battery& batteryController; | ||
const Pinetime::Controllers::Ble& bleController; | ||
Pinetime::Controllers::DateTime& dateTimeController; | ||
Pinetime::Controllers::NotificationManager& notificationManager; | ||
Pinetime::Controllers::HeartRateController& heartRateController; | ||
Pinetime::Controllers::Settings& settingsController; | ||
Pinetime::Controllers::MotorController& motorController; | ||
Pinetime::Controllers::MotionController& motionController; | ||
Pinetime::Controllers::AlarmController& alarmController; | ||
Pinetime::Controllers::BrightnessController& brightnessController; | ||
Pinetime::Controllers::WeatherService* weatherController; | ||
Pinetime::Controllers::FS& filesystem; | ||
Pinetime::Controllers::Timer& timer; | ||
Pinetime::System::SystemTask* systemTask; | ||
Pinetime::Applications::DisplayApp* displayApp; | ||
Pinetime::Components::LittleVgl& lvgl; | ||
Pinetime::Controllers::MusicService* musicService; | ||
Pinetime::Controllers::NavigationService* navigationService; | ||
}; | ||
} | ||
} |
Oops, something went wrong.