-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from joshreed13/develop
Added More New Features for 2016
- Loading branch information
Showing
31 changed files
with
1,407 additions
and
266 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,13 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace RED.Models | ||
{ | ||
public class CameraMuxModel | ||
{ | ||
internal byte MuxIndex; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ namespace RED.Models | |
{ | ||
public class GimbalModel | ||
{ | ||
internal int gimbalIndex; | ||
internal int speedLimit; | ||
} | ||
} |
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,34 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace RED.Models | ||
{ | ||
public class PowerModel | ||
{ | ||
internal float Motor1Current; | ||
internal float Motor2Current; | ||
internal float Motor3Current; | ||
internal float Motor4Current; | ||
internal float Motor5Current; | ||
internal float Motor6Current; | ||
internal float Motor7Current; | ||
internal float Motor8Current; | ||
internal float Bus5VCurrent; | ||
internal float Bus12VCurrent; | ||
internal float InputVoltage; | ||
|
||
internal float Cell1Voltage; | ||
internal float Cell2Voltage; | ||
internal float Cell3Voltage; | ||
internal float Cell4Voltage; | ||
internal float Cell5Voltage; | ||
internal float Cell6Voltage; | ||
internal float Cell7Voltage; | ||
internal float Cell8Voltage; | ||
internal float TotalPackCurrent; | ||
internal float TotalPackVoltage; | ||
} | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.