[examples] Add communication examples (e.g. arduino) (#2500)

Co-authored-by: Andrew Dassonville <dassonville.andrew@gmail.com>
This commit is contained in:
Starlight220
2022-01-07 04:08:57 +02:00
committed by GitHub
parent 5ccfc4adbd
commit 269cf03472
8 changed files with 287 additions and 0 deletions

View File

@@ -260,6 +260,27 @@
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "I2C Communication",
"description": "An example program that communicates with external devices (such as an Arduino) using the roboRIO's I2C port",
"tags": [
"I2C"
],
"foldername": "I2CCommunication",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Digital Communication Sample",
"description": "An example program that communicates with external devices (such as an Arduino) using the roboRIO's DIO",
"tags": [
"Digital"
],
"foldername": "DigitalCommunication",
"gradlebase": "cpp",
"commandversion": 2
},
{
"name": "Axis Camera Sample",
"description": "An example program that acquires images from an Axis network camera and adds some annotation to the image as you might do for showing operators the result of some image recognition, and sends it to the dashboard for display. This demonstrates the use of the AxisCamera class.",