-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixed gitignore removing BFIO.json
- Fixed BFIO.json not being pushed - Added GitHub search card to DriverMenu.py it's in Cards.py
- Loading branch information
Showing
6 changed files
with
270 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
*.pyc | ||
*.json | ||
!Config.json | ||
!Config.json | ||
!BFIO.json |
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,74 @@ | ||
{ | ||
"Version" : 1, | ||
"DriverRepo" : "link_here", | ||
|
||
"Information" : { | ||
"Name" : "Kontrol", | ||
"Description" : "Universal controller of devices and BrSpand cards", | ||
"Company" : "BRS", | ||
"Version" : "0.0", | ||
"Type" : "Master" | ||
}, | ||
|
||
"Functions" : [ | ||
{ | ||
"ID" : 0, | ||
"Name" : "Ping", | ||
"Description" : "Pings the other device", | ||
"Parameters" : null, | ||
"Answer" : { | ||
"Names" : ["Pong"], | ||
"Types" : ["bool"], | ||
"Descriptions" : ["Returned ping"] | ||
} | ||
}, | ||
{ | ||
"ID" : 1, | ||
"Name" : "GetSatus", | ||
"Description" : "Gets the current status of the other end device.", | ||
"Parameters" : null, | ||
"Answer" : { | ||
"Names" : ["Status"], | ||
"Types" : ["unsigned char"], | ||
"Descriptions" : ["Status of the device"] | ||
} | ||
}, | ||
{ | ||
"ID" : 2, | ||
"Name" : "GetHandshake", | ||
"Description" : "Gets the current status of the other end device.", | ||
"Parameters" : { | ||
"Names" : ["JSON"], | ||
"Types" : ["string"], | ||
"Descriptions" : ["The end device’s BFIO JSON string"] | ||
}, | ||
"Answer" : { | ||
"Names" : ["Status"], | ||
"Types" : ["string"], | ||
"Descriptions" : ["Status of the device"] | ||
} | ||
}, | ||
{ | ||
"ID" : 3, | ||
"Name" : "GetErrorMessage", | ||
"Description" : "Gets the device last error message.", | ||
"Parameters" : null, | ||
"Answer" : { | ||
"Names" : ["Message"], | ||
"Types" : ["string"], | ||
"Descriptions" : ["The device’s error message."] | ||
} | ||
}, | ||
{ | ||
"ID" : 4, | ||
"Name" : "GetType", | ||
"Description" : "Gets the type of the other device", | ||
"Parameters" : null, | ||
"Answer" : { | ||
"Names" : ["Type"], | ||
"Types" : ["unsigned char"], | ||
"Descriptions" : ["The end device’s type."] | ||
} | ||
} | ||
] | ||
} |
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
Binary file not shown.