Koala Log just released! If you haven't already, try it now.
Usage

Setup

How to add KoalaLog to your FTC project.

🚀 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>'
}

🔁 Replace <version> with the latest 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