Big Knob
A big friendly dial for driving a numeric parameter
- value
This is a widget node, not a processing node: it's a big numeric knob you turn to set a value, and it outputs that value as a FLOAT. No model, no math beyond clamping and rounding - just a human-friendly dial for driving a parameter like CFG, strength, or denoise instead of typing into a tiny text field.
The author's own README note is worth quoting in full: "Totally untested." That's it. That's the review. So go in with your eyes open - it's a UI convenience node, the sort of thing that either works or visibly doesn't, and it has been sitting in a grab-bag pack for a while without fanfare.
What it actually does
The node has a single required input, value (FLOAT, default 0.5, min 0, max 1, step 0.01) - "Current value." You drag the knob, and the node clamps the result to its min/max and rounds to a precision, then hands it out as the value output (FLOAT). Under the hood the min, max, and precision are properties set via the node's UI, and the code normalizes them if you swap min/max, so a flipped knob doesn't explode.
In practical terms: it's a dial for ranges like 0–1 (strength, denoise) where turning a knob is faster and more pleasant than nudging a number. Wire the output into a node that takes a FLOAT and you're done.
When it's worth it
- You're iterating on a strength slider and a big knob reads better than a thin input.
- You want a workflow where someone else can casually drag a parameter without hunting for the right box.
- You want a single visible control that multiple downstream nodes share.
The honest counterpoint: most FLOAT inputs in ComfyUI are already draggable right on the node, and a slider widget does 90% of this job. BigKnob is a nicety, not a necessity - and with "totally untested" in the README, it's the kind of node you'd add for aesthetics, not reliability.
Installing it
It's in comfy-ovum:
cd ComfyUI/custom_nodes
git clone https://github.com/sfinktah/comfy-ovum
Restart, or ComfyUI Manager → search "comfy-ovum". No models, no extra dependencies.
Gotchas
Since the README itself flags it as untested, keep the expectation low. If the knob misbehaves in your ComfyUI version, remember it's a frontend widget - the backend is just a clamp-and-round - so most issues would show up as the knob not dragging smoothly or the value not updating, and there's not much to debug beyond "update the pack and retry." The default range is 0–1, which fits strength-style params; for anything else you'll want to adjust min/max in the node properties.
Inputs (1)
| Name | Type | Default | Description |
|---|---|---|---|
| value | FLOAT | 0.500–1 | Current value |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| value | FLOAT | — |