How to use the setFrequency function from bindings
Find comprehensive JavaScript bindings.setFrequency code examples handpicked from public code repositorys.
128 129 130 131 132 133 134 135 136 137
if(isNaN(freq) || !Number.isInteger(freq) || freq <= 0){ throw `Frequency must be an integer and greater than 0`; } _cycle.frequency = freq; _cycle.period = ecat.setFrequency(_cycle.frequency); _config.frequency = _cycle.frequency; return _cycle; }
0
1
2
bindings.createKey is the most popular function in bindings (8616 examples)