-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
416 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Runalyze Device List. | ||
* | ||
* (c) RUNALYZE <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Runalyze\Devices\Device; | ||
|
||
class GarminApproachS12 extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_APPROACH_S_12; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Approach S12'; | ||
} | ||
} |
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,32 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Runalyze Device List. | ||
* | ||
* (c) RUNALYZE <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Runalyze\Devices\Device; | ||
|
||
class GarminEdge1050 extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_EDGE_1050; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Edge 1050'; | ||
} | ||
|
||
public function hasBarometer(): bool | ||
{ | ||
return true; | ||
} | ||
} |
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,32 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Runalyze Device List. | ||
* | ||
* (c) RUNALYZE <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Runalyze\Devices\Device; | ||
|
||
class GarminEnduro3 extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_ENDURO_3; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Enduro 3'; | ||
} | ||
|
||
public function hasBarometer(): bool | ||
{ | ||
return true; | ||
} | ||
} |
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,32 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Runalyze Device List. | ||
* | ||
* (c) RUNALYZE <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Runalyze\Devices\Device; | ||
|
||
class GarminFenix8Amoled43 extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_FENIX_8_AMOLED_43; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Fenix 8 Amoled (43mm)'; | ||
} | ||
|
||
public function hasBarometer(): bool | ||
{ | ||
return true; | ||
} | ||
} |
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,32 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Runalyze Device List. | ||
* | ||
* (c) RUNALYZE <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Runalyze\Devices\Device; | ||
|
||
class GarminFenix8Amoled47 extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_FENIX_8_AMOLED_47; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Fenix 8 Amoled (47mm)'; | ||
} | ||
|
||
public function hasBarometer(): bool | ||
{ | ||
return true; | ||
} | ||
} |
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,32 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Runalyze Device List. | ||
* | ||
* (c) RUNALYZE <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Runalyze\Devices\Device; | ||
|
||
class GarminFenix8Amoled51 extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_FENIX_8_AMOLED_51; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Fenix 8 Amoled (51mm)'; | ||
} | ||
|
||
public function hasBarometer(): bool | ||
{ | ||
return true; | ||
} | ||
} |
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,32 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Runalyze Device List. | ||
* | ||
* (c) RUNALYZE <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Runalyze\Devices\Device; | ||
|
||
class GarminFenix8Solar43 extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_FENIX_8_SOLAR_43; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Fenix 8 Solar/Sapphire (43mm)'; | ||
} | ||
|
||
public function hasBarometer(): bool | ||
{ | ||
return true; | ||
} | ||
} |
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,32 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Runalyze Device List. | ||
* | ||
* (c) RUNALYZE <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Runalyze\Devices\Device; | ||
|
||
class GarminFenix8Solar47 extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_FENIX_8_SOLAR_47; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Fenix 8 Solar/Sapphire (47mm)'; | ||
} | ||
|
||
public function hasBarometer(): bool | ||
{ | ||
return true; | ||
} | ||
} |
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,32 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Runalyze Device List. | ||
* | ||
* (c) RUNALYZE <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Runalyze\Devices\Device; | ||
|
||
class GarminFenix8Solar51 extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_FENIX_8_SOLAR_51; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Fenix 8 Solar/Sapphire (51mm)'; | ||
} | ||
|
||
public function hasBarometer(): bool | ||
{ | ||
return true; | ||
} | ||
} |
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,32 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Runalyze Device List. | ||
* | ||
* (c) RUNALYZE <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Runalyze\Devices\Device; | ||
|
||
class GarminFenixE extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_FENIX_E; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Fenix E'; | ||
} | ||
|
||
public function hasBarometer(): bool | ||
{ | ||
return true; | ||
} | ||
} |
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,27 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the Runalyze Device List. | ||
* | ||
* (c) RUNALYZE <[email protected]> | ||
* | ||
* This source file is subject to the MIT license that is bundled | ||
* with this source code in the file LICENSE. | ||
*/ | ||
|
||
namespace Runalyze\Devices\Device; | ||
|
||
class GarminLily2 extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_LILY_2; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Lily 2'; | ||
} | ||
} |
Oops, something went wrong.