Jump to content

Component: Quadrature Encoder (General Input): Difference between revisions

From Flowcode Help
No edit summary
m Text replacement - "style="background-color:#EAE1EA;"" to "class="mtx-class-propfolder""
 
(7 intermediate revisions by 3 users not shown)
Line 15: Line 15:
Quadrature Encoder component implements a rotary encoder connected to two pins. Quadrature Encoders provides incremental positioning rather than absolute positioning.  
Quadrature Encoder component implements a rotary encoder connected to two pins. Quadrature Encoders provides incremental positioning rather than absolute positioning.  


==Component Source Code==
==Version information==
 
Please click here to download the component source project: [https://www.flowcode.co.uk/wiki/componentsource/FC_Comp_Source_Encoder_Quadrature.fcfx FC_Comp_Source_Encoder_Quadrature.fcfx]


Please click here to view the component source code (Beta): [https://www.flowcode.co.uk/FlowchartView/?wfile=componentsource/FC_Comp_Source_Encoder_Quadrature.fcfx FC_Comp_Source_Encoder_Quadrature.fcfx]
Library Version, Component Version, Date, Author, Info
6, 1.5, 26-11-24, BR, Updated tooltip for CheckForChanges macro


==Detailed description==
==Detailed description==


Mechanical encoders can be a bit electrically noisy when switching and so to have reliable operation it is recommended to have a simple filter as shown here.
Mechanical encoders can be a bit electrically noisy when switching and so to have reliable operation it is recommended to have a simple filter as shown here.
Line 42: Line 27:


==Examples==
==Examples==


===Polling===
===Polling===
Line 82: Line 40:
Example program showing how to use a quadrature encoder component using a interrupt on pin state change interrupt (IOC).
Example program showing how to use a quadrature encoder component using a interrupt on pin state change interrupt (IOC).
{{Fcfile|Quad_Encoder_IOC.fcfx|Quad_Encoder_IOC}}
{{Fcfile|Quad_Encoder_IOC.fcfx|Quad_Encoder_IOC}}




Line 96: Line 45:


===CheckForChanges===
===CheckForChanges===
{| class="wikitable" style="width:60%; background-color:#FFFFFF;"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''CheckForChanges'''
| width="90%" class="mtx-class-macrohead" | '''CheckForChanges'''
|-
|-
| colspan="2" | Polling function to check changes Returns 1 for chaged, 0 for no change, 255 for error 
| colspan="2" | Polling function to check changes and update internal counter. Returns 1 for chaged, 0 for no change, 255 for error 
|-
|-
|-
|-
Line 110: Line 59:


===Disable===
===Disable===
{| class="wikitable" style="width:60%; background-color:#FFFFFF;"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''Disable'''
| width="90%" class="mtx-class-macrohead" | '''Disable'''
|-
|-
| colspan="2" | Disables the use of the quad encoder Once this ist called, the read functions will return zeros until the next Enable() call 
| colspan="2" | Disables the use of the quad encoder Once this ist called, the read functions will return zeros until the next Enable() call 
Line 124: Line 73:


===Enable===
===Enable===
{| class="wikitable" style="width:60%; background-color:#FFFFFF;"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''Enable'''
| width="90%" class="mtx-class-macrohead" | '''Enable'''
|-
|-
| colspan="2" | Enables the use of the quad encoder If this is not called, the read functions will return zeros 
| colspan="2" | Enables the use of the quad encoder If this is not called, the read functions will return zeros 
Line 138: Line 87:


===ReadCounter===
===ReadCounter===
{| class="wikitable" style="width:60%; background-color:#FFFFFF;"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''ReadCounter'''
| width="90%" class="mtx-class-macrohead" | '''ReadCounter'''
|-
|-
| colspan="2" | Reads the current dial counter This is a counter from -32768 to 32767 
| colspan="2" | Reads the current dial counter This is a counter from -32768 to 32767 
Line 152: Line 101:


===ReadCounter32===
===ReadCounter32===
{| class="wikitable" style="width:60%; background-color:#FFFFFF;"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''ReadCounter32'''
| width="90%" class="mtx-class-macrohead" | '''ReadCounter32'''
|-
|-
| colspan="2" | Reads the current dial counter as a 32-bit value This is a counter from -2147483648 to 2147483647 
| colspan="2" | Reads the current dial counter as a 32-bit value This is a counter from -2147483648 to 2147483647 
Line 166: Line 115:


===ResetCounter===
===ResetCounter===
{| class="wikitable" style="width:60%; background-color:#FFFFFF;"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''ResetCounter'''
| width="90%" class="mtx-class-macrohead" | '''ResetCounter'''
|-
|-
| colspan="2" | Resets the current dial counter to zero  
| colspan="2" | Resets the current dial counter to zero  
Line 180: Line 129:


===Rotate===
===Rotate===
{| class="wikitable" style="width:60%; background-color:#FFFFFF;"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''Rotate'''
| width="90%" class="mtx-class-macrohead" | '''Rotate'''
|-
|-
| colspan="2" | Simulation Rotate function to allow accurate rotation during simulation. Automatically called by any attached coupling or gearbox component. 
| colspan="2" | Simulation Rotate function to allow accurate rotation during simulation. Automatically called by any attached coupling or gearbox component. 
Line 199: Line 148:


===WriteCounter===
===WriteCounter===
{| class="wikitable" style="width:60%; background-color:#FFFFFF;"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''WriteCounter'''
| width="90%" class="mtx-class-macrohead" | '''WriteCounter'''
|-
|-
| colspan="2" | Sets the value of the internal count variable. Range: -32768 to 32767 
| colspan="2" | Sets the value of the internal count variable. Range: -32768 to 32767 
Line 218: Line 167:


===WriteCounter32===
===WriteCounter32===
{| class="wikitable" style="width:60%; background-color:#FFFFFF;"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" align="center" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''WriteCounter32'''
| width="90%" class="mtx-class-macrohead" | '''WriteCounter32'''
|-
|-
| colspan="2" | Sets the value of the internal count variable. Range: -2147483648 to 2147483647 
| colspan="2" | Sets the value of the internal count variable. Range: -2147483648 to 2147483647 
Line 238: Line 187:
==Property reference==
==Property reference==


{| class="wikitable" style="width:60%; background-color:#FFFFFF;"
{| class="mtx-class-macrotable wikitable"
|-
|-
| width="10%" align="center" style="background-color:#D8C9D8;" | [[File:Fc9-prop-icon.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-prop-icon.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''Properties'''  
| width="90%" class="mtx-class-macrohead" | '''Properties'''  
|-
|-
|-
|-
| width="10%" align="center" style="background-color:#EAE1EA;" | [[File:Fc9-conn-icon.png]]
| width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]]
| width="90%" style="background-color:#EAE1EA; color:#4B008D;" | Count Variable
| width="90%" class="mtx-class-propfolder" | Count Variable
|-
|-
|-
|-
Line 253: Line 202:
| colspan="2" | Selects the size of the encoder count variable depending on the number of encoder counts required to be stored. The 16 bit variable counter is accessed via the ReadCounter and WriteCounter functions. The 32 bit variable counter is accessed via the ReadCounter32 and WriteCounter32 functions. 
| colspan="2" | Selects the size of the encoder count variable depending on the number of encoder counts required to be stored. The 16 bit variable counter is accessed via the ReadCounter and WriteCounter functions. The 32 bit variable counter is accessed via the ReadCounter32 and WriteCounter32 functions. 
|-
|-
| width="10%" align="center" style="background-color:#EAE1EA;" | [[File:Fc9-conn-icon.png]]
| width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]]
| width="90%" style="background-color:#EAE1EA; color:#4B008D;" | Encoder Resolution
| width="90%" class="mtx-class-propfolder" | Encoder Resolution
|-
|-
|-
|-
Line 272: Line 221:
| colspan="2" | The resolution of the encoder in degrees 
| colspan="2" | The resolution of the encoder in degrees 
|-
|-
| width="10%" align="center" style="background-color:#EAE1EA;" | [[File:Fc9-conn-icon.png]]
| width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]]
| width="90%" style="background-color:#EAE1EA; color:#4B008D;" | Connections
| width="90%" class="mtx-class-propfolder" | Connections
|-
|-
|-
|-
Line 286: Line 235:
| colspan="2" | Input Pin B  
| colspan="2" | Input Pin B  
|-
|-
| width="10%" align="center" style="background-color:#EAE1EA;" | [[File:Fc9-conn-icon.png]]
| width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]]
| width="90%" style="background-color:#EAE1EA; color:#4B008D;" | Simulation
| width="90%" class="mtx-class-propfolder" | Simulation
|-
|-
|-
|-
Line 305: Line 254:
| colspan="2" |  
| colspan="2" |  
|}
|}
==Component Source Code==
Please click here to download the component source project: [https://www.flowcode.co.uk/wiki/componentsource/FC_Comp_Source_Encoder_Quadrature.fcfx FC_Comp_Source_Encoder_Quadrature.fcfx]
Please click here to view the component source code (Beta): [https://www.flowcode.co.uk/FlowchartView/?wfile=componentsource/FC_Comp_Source_Encoder_Quadrature.fcfx FC_Comp_Source_Encoder_Quadrature.fcfx]

Latest revision as of 14:37, 13 July 2026

Author Matrix TSL
Version 1.5
Category General Input


Quadrature Encoder component

Quadrature Encoder component implements a rotary encoder connected to two pins. Quadrature Encoders provides incremental positioning rather than absolute positioning.

Version information

Library Version, Component Version, Date, Author, Info
6, 1.5, 26-11-24, BR, Updated tooltip for CheckForChanges macro

Detailed description

Mechanical encoders can be a bit electrically noisy when switching and so to have reliable operation it is recommended to have a simple filter as shown here.

Examples

Polling

Example program showing how to use a quadrature encoder component using a polling method. Quad_Encoder_Test

Timer Interrupt Based Polling

Example program showing how to use a quadrature encoder component using a polling method via a timer interrupt. Quad_Encoder_Timer

Interrupt On Change

Example program showing how to use a quadrature encoder component using a interrupt on pin state change interrupt (IOC). Quad_Encoder_IOC


Macro reference

CheckForChanges

CheckForChanges
Polling function to check changes and update internal counter. Returns 1 for chaged, 0 for no change, 255 for error 
- BYTE Return


Disable

Disable
Disables the use of the quad encoder Once this ist called, the read functions will return zeros until the next Enable() call 
- VOID Return


Enable

Enable
Enables the use of the quad encoder If this is not called, the read functions will return zeros 
- VOID Return


ReadCounter

ReadCounter
Reads the current dial counter This is a counter from -32768 to 32767 
- INT Return


ReadCounter32

ReadCounter32
Reads the current dial counter as a 32-bit value This is a counter from -2147483648 to 2147483647 
- LONG Return


ResetCounter

ResetCounter
Resets the current dial counter to zero  
- VOID Return


Rotate

Rotate
Simulation Rotate function to allow accurate rotation during simulation. Automatically called by any attached coupling or gearbox component. 
- FLOAT Angle
Amount to rotate the shaft input in degrees 
- VOID Return


WriteCounter

WriteCounter
Sets the value of the internal count variable. Range: -32768 to 32767 
- INT Value
Range: -32768 to 32767 
- VOID Return


WriteCounter32

WriteCounter32
Sets the value of the internal count variable. Range: -2147483648 to 2147483647 
- LONG Value
Range: -2147483648 to 2147483647 
- VOID Return


Property reference

Properties
Count Variable
Variable Type
Selects the size of the encoder count variable depending on the number of encoder counts required to be stored. The 16 bit variable counter is accessed via the ReadCounter and WriteCounter functions. The 32 bit variable counter is accessed via the ReadCounter32 and WriteCounter32 functions. 
Encoder Resolution
Post Scaler
Encoders with a mechanical click will often have 4 transitions per click. 1:1 would provide the maximum output resolution. 1:4 would provide the encoder click count. 
Edges Per Revolution
Number of signal transitions per revolution. E.g. for a 360 degree encoder you would likely get 360 x 4 = 1440 transitions and an accuracy of 0.25 degrees. 
Resolution
The resolution of the encoder in degrees 
Connections
A
Input pin A 
B
Input Pin B  
Simulation
Repeat Rate
Simulated repeat rate when clicking and rotating the encoder 
Rotation Increment
Number of degrees to rotate when performing a single quadrature pin transition. 
Scope Traces
 

Component Source Code

Please click here to download the component source project: FC_Comp_Source_Encoder_Quadrature.fcfx

Please click here to view the component source code (Beta): FC_Comp_Source_Encoder_Quadrature.fcfx