-
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
Michael Pohl
committed
Oct 12, 2023
1 parent
314256f
commit bc124e5
Showing
12 changed files
with
180 additions
and
1 deletion.
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,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 GarminMarqCommander2Carbon extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_MARQ_COMMANDER_2_CARBON; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'MARQ Commander (Gen 2) Carbon'; | ||
} | ||
|
||
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 GarminTactix7Amoled extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_TACTIX_7_AMOLED; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Tactix 7 Amoled'; | ||
} | ||
|
||
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
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 GarminVenu3S extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_VENU_3_S; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Venu 3 S'; | ||
} | ||
|
||
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 GarminVivoMoveTrend extends AbstractDevice | ||
{ | ||
use GarminDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::GARMIN_VIVO_MOVE_TREND; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'vívomove Trend'; | ||
} | ||
|
||
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 PolarVantageV3 extends AbstractDevice | ||
{ | ||
use PolarDeviceTrait; | ||
|
||
public function getEnum(): int | ||
{ | ||
return DeviceProfile::POLAR_VANTAGE_V_3; | ||
} | ||
|
||
public function getName(): string | ||
{ | ||
return 'Vantage V3'; | ||
} | ||
|
||
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
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