Setup
How to set up, use, and extend KoalaLog.
🚀 How to Add to Your FTC Project
To start logging FTC data in the .wpilog format, follow these steps:
1️⃣ Add the JitPack Repository
In your TeamCode/build.gradle file, add the following below the android block:
android {
// your existing config...
}
repositories {
maven { url 'https://jitpack.io' }
}2️⃣ Add the Dependencies
Still in TeamCode/build.gradle, add the following inside the dependencies block:
dependencies {
implementation 'com.github.ori-coval.Koala-Log:KoalaLogger:<version>'
annotationProcessor 'com.github.ori-coval.Koala-Log:KoalaLoggingProcessor:<version>'
}⚠️ Required: FTC Dashboard
This logger uses FTC Dashboard to post live values.
You must add FTC Dashboard to your project for it to work correctly. Follow the official instructions here:
📚 How to Add FTC Dashboard
Last updated on