diff --git a/_data/projects.json b/_data/projects.json
index 42635df..acb3ec1 100644
--- a/_data/projects.json
+++ b/_data/projects.json
@@ -61,6 +61,20 @@
"img_src": "/assets/images/projects/mcinfo.jp2"
}
},
+ {
+ "title": "DJI3D",
+ "description": "DJI3D is a tool for graphing 3d positional data extracted from DJI drone telemetry. This tool works by extracting flight computer data from video metadata.",
+ "text_buttons": [],
+ "icon_buttons": [
+ {
+ "icon": "fab fa-github",
+ "url": "https://github.com/Ewpratten/dji3d"
+ }
+ ],
+ "hero": {
+ "img_src": "https://raw.githubusercontent.com/Ewpratten/dji3d/master/test.png"
+ }
+ },
{
"title": "JDMA",
"description": "JDMA is a Java library that provides c-like malloc()
and free()
functions, along with many others. All functions operate off-heap, meaning no need to deal with the garbage collector.",
@@ -76,6 +90,54 @@
}
]
},
+ {
+ "title": "Minecraft Query",
+ "description": "Minecraft Query is a small CLI tool for checking who is playing on a Minecraft server.",
+ "text_buttons": [],
+ "icon_buttons": [
+ {
+ "icon": "fab fa-github",
+ "url": "https://github.com/Ewpratten/mcq"
+ },
+ {
+ "icon": "fas fa-download",
+ "url": "https://crates.io/crates/mcquery"
+ }
+ ]
+ },
+ {
+ "title": "HamBands",
+ "description": "HamBands is a small Rust library for checking which amateur radio band a frequency belongs to.",
+ "text_buttons": [],
+ "icon_buttons": [
+ {
+ "icon": "fab fa-github",
+ "url": "https://github.com/Ewpratten/hambands"
+ },
+ {
+ "icon": "fas fa-book",
+ "url": "https://docs.rs/hambands"
+ },
+ {
+ "icon": "fas fa-download",
+ "url": "https://crates.io/crates/hambands"
+ }
+ ]
+ },
+ {
+ "title": "Path Following Demo",
+ "description": "This application is an interactive demonstration of the Pure Pursuit algorithm used by @frc5024 in frc5024/lib5k.",
+ "text_buttons": [],
+ "icon_buttons": [
+ {
+ "icon": "fab fa-github",
+ "url": "https://github.com/Ewpratten/pathfollowing-demo"
+ }
+ ],
+ "hero": {
+ "img_src": "https://raw.githubusercontent.com/Ewpratten/pathfollowing-demo/master/screenshot.png"
+ }
+ },
{
"title": "FilterLib",
"description": "FilterLib is a small utility library for Java that is designed to provide a simple way to work with lists of data. This library is heavily callback-oriented.",