forked from NextFTC/Control
-
Notifications
You must be signed in to change notification settings - Fork 5
RGBHeadlight #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
s0hum
wants to merge
3
commits into
NextFTC:develop
Choose a base branch
from
s0hum:sohum
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
RGBHeadlight #1
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletions
81
hardware/src/main/kotlin/dev/nextftc/hardware/servos/RGBHeadlight.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| /* | ||
| * Copyright (c) 2026 NextFTC Team | ||
| * | ||
| * Use of this source code is governed by an BSD-3-clause | ||
| * license that can be found in the LICENSE.md file at the root of this repository or at | ||
| * https://opensource.org/license/bsd-3-clause. | ||
| */ | ||
|
|
||
| package dev.nextftc.hardware.servos | ||
|
|
||
| import kotlin.math.round | ||
|
|
||
| /** | ||
| * Wrapper for the goBILDA PWM RGB Headlight Module. | ||
| * | ||
| * The module behaves like a servo, | ||
| * different PWM positions correspond to different colors/patterns. | ||
| * | ||
| * Example: | ||
| * val headlight = RGBHeadlight("headlights") | ||
| * | ||
| * headlight.setColor(Color.RED) | ||
| * | ||
| * headlight.setBrightness(0.8) | ||
| * | ||
| * @param initializer A function returning the backing [NextServo]. | ||
| * @param cacheTolerance Tolerance used by the [Caching] delegate for | ||
| * position updates; defaults to 0.01. | ||
| */ | ||
| class RGBHeadlight(name: String, cacheTolerance: Double = 0.01) : NextServo(name, cacheTolerance) { | ||
|
|
||
| /** | ||
| * Available colors/patterns for the headlights | ||
| * | ||
| * Values are servo positions. | ||
| */ | ||
| enum class Color(val position: Double) { | ||
| OFF(0.0), | ||
|
|
||
| RED(0.279), | ||
| ORANGE(0.333), | ||
| YELLOW(0.388), | ||
| SAGE(0.444), | ||
| GREEN(0.500), | ||
| AZURE(0.555), | ||
| BLUE(0.611), | ||
| INDIGO(0.666), | ||
| VIOLET(0.722), | ||
| WHITE(1.0), | ||
| } | ||
|
|
||
| //Sets the headlight color/pattern. | ||
| fun setColor(color: Color) { | ||
| position = round(color.position * 100) / 100 | ||
| } | ||
|
|
||
| fun setColor(pwm : Double) { | ||
| position = round(pwm * 100) / 100 | ||
| } | ||
|
|
||
| //turns headlights off | ||
| fun off() { | ||
| setColor(Color.OFF) | ||
| } | ||
|
|
||
| /** | ||
| * Sets brightness by scaling the PWM range. | ||
| * | ||
| * brightness: | ||
| * 0.0 = dimmest | ||
| * 1.0 = brightest | ||
| */ | ||
| fun setBrightness(brightness: Double) { | ||
| val clipped = brightness.coerceIn(0.0, 1.0) | ||
|
|
||
| val lower = 500.0 | ||
| val upper = 2500.0 * clipped | ||
|
|
||
| setPwmRange(lower, upper) | ||
| } | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't need this; you can just call
servo.position = something. AsetPositionfunction is generated by the Kotlin compiler for Java users.