Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
684 changes: 15 additions & 669 deletions LICENSE

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* See the LICENSE in the root of this project for more information.
*/

plugins {
kotlin("jvm") version libs.versions.kotlin.get()
`java-library`
Expand Down
6 changes: 6 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#
# Copyright (c) 2025. The NextFTC Team and other contributors.
#
# See the LICENSE in the root of this project for more information.
#

kotlin.code.style=official
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true
Expand Down
6 changes: 6 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#
# Copyright (c) 2025. The NextFTC Team and other contributors.
#
# See the LICENSE in the root of this project for more information.
#

#Sun Jun 08 22:33:05 CDT 2025
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
Expand Down
6 changes: 6 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* See the LICENSE in the root of this project for more information.
*/

plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
Expand Down
16 changes: 2 additions & 14 deletions src/main/kotlin/dev/nextftc/control/ControlSystem.kt
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control
Expand Down
16 changes: 2 additions & 14 deletions src/main/kotlin/dev/nextftc/control/KineticState.kt
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.builder

import dev.nextftc.control.ControlSystem
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.builder

import dev.nextftc.control.feedback.*
Expand Down
16 changes: 2 additions & 14 deletions src/main/kotlin/dev/nextftc/control/feedback/AngularFeedback.kt
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.feedback
Expand Down
16 changes: 2 additions & 14 deletions src/main/kotlin/dev/nextftc/control/feedback/BangBangElement.kt
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.feedback
Expand Down
16 changes: 2 additions & 14 deletions src/main/kotlin/dev/nextftc/control/feedback/FeedbackElement.kt
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.feedback
Expand Down
16 changes: 2 additions & 14 deletions src/main/kotlin/dev/nextftc/control/feedback/PIDElement.kt
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.feedback
Expand Down
16 changes: 2 additions & 14 deletions src/main/kotlin/dev/nextftc/control/feedback/SquIDElement.kt
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.feedback
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.feedforward
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.feedforward
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.feedforward
Expand Down
16 changes: 2 additions & 14 deletions src/main/kotlin/dev/nextftc/control/filters/ChainedFilter.kt
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.filters
Expand Down
16 changes: 2 additions & 14 deletions src/main/kotlin/dev/nextftc/control/filters/Filter.kt
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.filters
Expand Down
16 changes: 2 additions & 14 deletions src/main/kotlin/dev/nextftc/control/filters/FilterElement.kt
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.filters
Expand Down
16 changes: 2 additions & 14 deletions src/main/kotlin/dev/nextftc/control/filters/LowPassFilter.kt
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.filters
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
/*
* NextFTC: a user-friendly control library for FIRST Tech Challenge
* Copyright (C) 2025 Rowan McAlpin
* Copyright (c) 2025. The NextFTC Team and other contributors.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* See the LICENSE in the root of this project for more information.
*/

package dev.nextftc.control.interpolators
Expand Down
Loading