CounterFit logo CounterFit - Virtual IoT Hardware

Source

Sensors

Create sensor

Sensor Type:
Units:
Pin:
{% for sensor in sensors %}
{% if sensor.sensor_type().name == "FLOAT": %} {% with sensor=sensor %} {% include "float_sensor.html" %} {% endwith %} {% endif %} {% if sensor.sensor_type().name == "BOOLEAN": %} {% with sensor=sensor %} {% include "boolean_sensor.html" %} {% endwith %} {% endif %}
{% endfor %}

Actuators

Create actuator

Actuator Type:
Pin:
{% for actuator in actuators %}
{% if actuator.actuator_name() == "LED": %} {% with actuator=actuator %} {% include "led_actuator.html" %} {% endwith %} {% endif %}
{% endfor %}