/ src / hal / components / constant.comp
constant.comp
1  component constant "Use a parameter to set the value of a pin";
2  pin out float out;
3  param rw float value;
4  function _;
5  license "GPL";
6  ;;
7  FUNCTION(_) {
8      out = value;
9  }