aboutsummaryrefslogtreecommitdiffstats
path: root/src/hal/components/constant.comp
blob: 5db8ae0682acf2498ef9f392b11d635962bb2739 (plain)
1
2
3
4
5
6
7
8
9
10
component constant "Use a parameter to set the value of a pin";
pin out float out;
param rw float value;
function _;
license "GPL";
author "John Kasunich";
;;
FUNCTION(_) {
    out = value;
}
bues.ch cgit interface