Skip to content

Arduino Library for Flip-disc Displays. The library allows you to easily control flip-disc displays connected in series. You can connect up to 8 different displays in any order. This library is intended for use with the displays designed by www.Flipo.io - Marcin Saj.

License

Notifications You must be signed in to change notification settings

marcinsaj/FlipDisc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arduino FlipDisc Library v1.0.9

https://github.com/marcinsaj/FlipDisc
The MIT License
Marcin Saj 15 Jan 2023

Dear Maker!
you are dealing with a very large project and not everything can be clear, because it is difficult to provide such extensive documentation about the library itself, several displays and side modules, display methods and many example program codes. If you need help or have any comments, please contact me: marcin@flipo.io



Introduction

Arduino library for flip-disc displays. This library is intended for use with the displays designed by www.Flipo.io - Marcin Saj.

The library allows you to easily control displays connected in series. You can connect up to 8 different displays in any order. Example codes and diagrams on how to connect the displays with the Arduino and the Pulse Shaper Power Supply module can be found below and on the project website: www.Flipo.io

All the functions responsible for controlling the displays are described in example codes and in the library files FlipDisc.ccp & FlipDisc.h

✔️ Supported Displays & Modules:


Library Installation

To use the FlipDisc library:

  • First method
    • Open Library Manager in Arduino IDE.
    • Type library name "FlipDisc" and install it.
  • Second method
    • Go to https://github.com/marcinsaj/FlipDisc, click the Download ZIP button and save the ZIP file to a convenient location on your PC.
    • Uncompress the downloaded file. This will result in a folder containing all the files for the library, that has a name that includes the branch name, usually FlipDisc-master or FlipDisc-main.
    • Rename the folder to just FlipDisc.
    • Copy the renamed folder to the Arduino sketchbook\libraries folder.

Examples - Code & Diagrams

Several example sketches are included with the FlipDisc library.
In order to better understand the code, a visualization of connecting individual modules has been attached to each program code.

All diagrams below include the Arduino UNO as a reference. You can use any Arduino board to control the displays. ⚠️ Remember that for proper operation, each of the display connection configurations and the library itself requires the connection of the Pulse Shaper Power Supply module.

In order to simplify the control of the displays, a dedicated controller was designed as the Arduino Shield for the Arduino Nano Every and Nano 33 IoT boards. The controller has a built-in pulse shaper power supply module and several other features.

In summary, there are two options:




1️⃣ Show me code   Download diagram 🔻


2️⃣ Show me code   Download diagram 🔻


3️⃣ Show me code   Download diagram 🔻


4️⃣ Show me code   Download diagram 🔻


5️⃣ Show me code   Download diagram 🔻


6️⃣ Show me code   Download diagram 🔻


7️⃣ Show me code   Download diagram 🔻


8️⃣ Show me code   Download diagram 🔻


9️⃣ Show me code   Download diagram 🔻


1️⃣0️⃣ Show me code   Download diagram 🔻


Warning!

The library uses SPI to control flip-disc displays. The user must remember to connect the display inputs marked DIN - data in - to the MOSI (SPI) output of the microcontroller and the CLK - clock - input of the display to the SCK (SPI) output of the microcontroller. In addition, it is very important to connect and declare EN, CH, PL pins. The declaration of DIN (MOSI) and CLK (SCK) is not necessary, because the <SPI.h> library handles the SPI hardware pins.

display -> microcontroller  
DIN -----> MOSI (SPI)  
CLK -----> SCK (SPI)  
EN ------> any digital pin  
CH ------> any digital pin  
PL ------> any digital pin 

Incorrect declaration of control pins or incorrect connection of modules may result in damage to flip-disc displays. When using the FlipDisc library with flip-disc displays, the user is responsible for ensuring that the connection of the display and power module corresponds to the declared control pins.


Functions

1️⃣⚠️

#define EN_PIN  'Set your pin'  // Start & End SPI transfer data
#define CH_PIN  'Set your pin'  // Charging PSPS module - turn ON/OFF
#define PL_PIN  'Set your pin'  // Release the current pulse - turn ON/OFF

Flip.Pin(EN_PIN, CH_PIN, PL_PIN);

Flip.Pin(...); it is most important function and first to call before everything else. The function is used to declare pin functions. Before starting the device, double check that the declarations and connection are correct. If the connection of the control outputs is incorrect, the display may be physically damaged.


2️⃣⚠️

Flip.Init(MOD1, MOD2 = 0xFF, MOD3 = 0xFF, MOD4 = 0xFF, 
                   MOD5 = 0xFF, MOD6 = 0xFF, MOD7 = 0xFF, MOD8 = 0xFF);  
                   
/* Examples function call */
/* 8 modules */
Flip.Init(D7SEG, D7SEG, D3X1, D7SEG, D7SEG, D3X1, D7SEG, D7SEG);

/* 1x3 display */
Flip.Init(D1X3);

/* 1x7 display */
Flip.Init(D1X7);

/* 2 x 7-Segment displays */
Flip.Init(D7SEG, D7SEG);

Flip.Init(...) it is second most important function. Initialization function for a series of displays. Up to 8 displays can be connected in series in any configuration. The function has 1 default argument and 7 optional arguments. The function also prepares SPI. Correct initialization requires code names of the serially connected displays:


3️⃣

Flip.Delay(0-100ms);

/* Example function call */
Flip.Delay(20);

The function is used to set the delay effect between flip discs. The default value without calling the function is 0. Can be called multiple times anywhere in the code. Recommended delay range: 0 - 100ms, max 255ms


4️⃣

Flip.Test();

The function is used to test all declared displays - turn on and off all displays.


5️⃣

Flip.All();

The function is used to turn on (set) all discs of all displays.


6️⃣

Flip.Clear();

The function is used to turn off (clear) all displays.


7️⃣

Flip.Disc_7Seg(module_number, disc_number, disc_status);

/* An example of calling the function to display disc no.19 
of the first 7-Segment display counting from the left */
Flip.Disc_7Seg(1, 19, 1); 

  0  1  2  3  4
 19           5
 18           6
 17 20 21 22  7
 16           8
 15           9
 14 13 12 11 10

The function allows you to control one selected disc of 7-Segment display. The first argument is the relative number of the display in the series of all 7-Segment displays. For example, if we have a combination of D7SEG, D3X1, D7SEG then the second D7SEG display will have a relative number of 2 even though there is a D3X1 display between the D7SEG displays. The second argument disc_number is the number of selected disc 0-22 of the 7-Segment display. The third argument is the status of the selected disc:

  • module_number - relative number of the "D7SEG" display
  • disc_number - there are 23 discs in 7-Segment display 0-22
  • disc_status - reset disc "0" or set disc "1"

See the function description in Flip.cpp


8️⃣

Flip.Display_7Seg(module_number, data);

/* An example of calling the function to display the number 5 
on the first 7-Segment display counting from the left 
 - module_number - 1-8 D7SEG display
 - data - symbol to display. */
Flip.Display_7Seg(1, 5); 

The function allows you to control one 7-segment display. The first argument "module_number" is the relative number of the display in the series of all displays. For example, if we have a combination of D7SEG, D3X1, D7SEG then the second D7SEG display will have a relative number of 2 even though there is a D3X1 display between the D7SEG displays.

7-Segment display consists of 23 discs. The displayArray_7Seg[][] array contains information about all disc statuses for the symbol we want to display. To flip a selected disc, we need to know the corresponding control outputs. Disc statuses "0" and "1" correspond to different control outputs. The list of information about all control outputs for corresponding disc statuses of all discs and the currently selected digit/symbol to be displayed are contained in two tables:

  • setDiscArray_7Seg[] - "1"
  • resetDiscArray_7Seg[] - "0"

See the function description in Flip.cpp


9️⃣

Flip.Matrix_7Seg(data1, data2 = 0xFF, data3 = 0xFF, data4 = 0xFF, 
                  data5 = 0xFF, data6 = 0xFF, data7 = 0xFF, data8 = 0xFF);
                  
/* Example function call assuming that we have declared the following displays 
Flip.Init(D7SEG, D7SEG, D7SEG, D7SEG) and we want to display temperature 70°F. */ 
Flip.Matrix_7Seg(7, 0, DEG, F);  

/* Or Celsius 23°C */ 
Flip.Matrix_7Seg(2, 3, DEG, C);

Function to control up to eight 7-segment displays.

7-segment displays allow the display of numbers and symbols. Symbols can be displayed using their code name or number
e.g. 37/DEG - "°" - Degree symbol

Code names for symbols:

  • 0-9
  • 1/VLR - " |" - Vertical line - right
  • 8/ALL - Set all discs
  • 10/CLR - Clear display
  • 11/A
  • 12/B
  • 13/C
  • 14/D
  • 15/E
  • 16/F
  • 17/G
  • 18/H
  • 19/I
  • 20/J
  • 21/K
  • 22/L
  • 23/M
  • 24/N
  • 25/O
  • 26/P
  • 27/Q
  • 28/R
  • 29/S
  • 30/T
  • 31/U
  • 32/V
  • 33/W
  • 34/X
  • 35/Y
  • 36/Z
  • 37/DEG - "°" - Degree symbol
  • 37/PFH - "%" - Percent first half symbol
  • 38/PSH - "%" - Percent second half symbol
  • 39/HLU - "¯" - Horizontal line - upper
  • 40/HLM - "-" - Horizontal line - middle
  • 41/HLL - "_" - Horizontal line - lower
  • 42/HLT - "=" - Horizontal line - upper & lower
  • 43/HLA - "≡" - All three lines
  • 40/MIN - "-" - Minus symbol
  • 44/VLL - "| " - Vertical line - left
  • 1/VLR - " |" - Vertical line - right
  • 45/VLA - "||" - All Vertical lines

1️⃣0️⃣

Flip.Disc_3x1(module_number, disc_number, disc_status);

/* Example function call. Set the second disc of the first display, counting from the left */
Flip.Disc_3x1(1, 2, 1);

Function allows you to control a selected disc in a selected 3x1 display. You can control only one disc of the selected display at a time. The first argument module_number is the relative number of the display in the series of all displays. For example, if we have a combination of D3X1, D7SEG, D3X1, then the second D3X1 display will have a relative number of 2 even though there is a D7SEG display between the D3X1 displays.

  • module_number - relative number of the D3X1 display
  • disc_number - display disc number counting from top to bottom 1-3
  • disc_status - reset disc "0" or set disc "1"

1️⃣1️⃣

Flip.Display_3x1(module_number, disc1 = 0xFF, disc2 = 0xFF, disc3 = 0xFF);

/* Example function call. Set the first and third disc and reset second disc 
of the second 3x1 display, counting from the left */
Flip.Display_3x1(2, 1, 0, 1);

/* Reset first disc of the first 3x1 display */
Flip.Display_3x1(1, 0);

/* Reset first disc and set second disc of the first 3x1 display */
Flip.Display_3x1(1, 0, 1);

Function allows you to control one, two or three discs of the selected 3x1 display. The first argument is the relative number "module_number" of the display in the series of all 3x1 displays. For example, if we have a combination of D3X1, D7SEG, D3X1, then the second D3X1 display will have a relative number of 2 even though there is a D7SEG display between the D3X1 displays.

  • module_number - relative number of the D3X1 display
  • disc1, disc2, disc3 - display discs counting from top to bottom 1-3

1️⃣2️⃣

Flip.Disc_2x1(module_number, disc_number, disc_status);

/* Example function call. Set the second disc of the first display, counting from the left */
Flip.Disc_2x1(1, 2, 1);

Function allows you to control a selected disc in a selected 2x1 display. You can control only one disc of the selected display at a time. The first argument module_number is the relative number of the display in the series of all 2x1 displays. For example, if we have a combination of D2X1, D7SEG, D2X1, then the second D2X1 display will have a relative number of 2 even though there is a D7SEG display between the D2X1 displays.

  • module_number - relative number of the D2X1 display
  • disc_number - display disc number counting from top to bottom 1-2
  • disc_status - reset disc "0" or set disc "1"

1️⃣3️⃣

Flip.Display_2x1(module_number, disc1 = 0xFF, disc2 = 0xFF);

/* Example function call. Set the first disc and reset second disc 
of the second 2x1 display, counting from the left */
Flip.Display_2x1(2, 1, 0);

/* Reset first disc of the first 2x1 display */
Flip.Display_2x1(1, 0);

/* Reset first disc and set second disc of the first 2x1 display */
Flip.Display_2x1(1, 0, 1);

Function allows you to control one or two discs of the selected 2x1 display. The first argument is the relative number "module_number" of the display in the series of all 2x1 displays. For example, if we have a combination of D2X1, D7SEG, D2X1, then the second D2X1 display will have a relative number of 2 even though there is a D7SEG display between the D2X1 displays.

  • module_number - relative number of the D2X1 display
  • disc1, disc2 - display discs counting from top to bottom 1-2

1️⃣4️⃣

Flip.Disc_1x3(module_number, disc_number, disc_status);

/* Example function call. Reset the second disc, counting from the left 
of the first display, counting from the left */
Flip.Disc_1x3(1, 2, 0);

Function allows you to control a selected disc in a selected 1x3 display. You can control only one disc of the selected display at a time. The first argument module_number is the relative number of the display in the series of all displays. For example, if we have a combination of D1X3, D7SEG, D1X3, then the second D1X3 display will have a relative number of 2 even though there is a D7SEG display between the D1X3 displays.

  • module_number - relative number of the D1X3 display
  • disc_number - display disc number counting from left to right 1-3
  • disc_status - reset disc "0" or set disc "1"

1️⃣5️⃣

void Flip.Display_1x3(module_number, disc1 = 0xFF, disc2 = 0xFF, disc3 = 0xFF);

/* Example function call. Set the first and third disc and reset second disc 
of the second 1x3 display, counting from the left */
Flip.Display_1x3(2, 1, 0, 1);

/* Set first disc of the first display */
Flip.Display_1x3(1, 1);

/* Set first disc and reset second disc of the first display */
Flip.Display_1x3(1, 1, 0);

The function allows you to control one, two or three discs of the selected 1x3 display. The first argument is the relative number "module_number" of the display in the series of all displays. For example, if we have a combination of D1X3, D7SEG, D1X3, then the second D1X3 display will have a relative number of 2 even though there is a D7SEG display between the D1X3 displays.

  • module_number - relative number of the D1X3 display
  • disc1, disc2, disc3 - display discs counting from left to right 1-3

1️⃣6️⃣

Flip.Disc_1x7(module_number, disc_number, disc_status);

/* Example function call. Set the fifth disc, counting from the left 
of the second 1x7 display, counting from the left */
Flip.Disc_1x7(2, 5, 1);

/* Reset the third disc, counting from the left of the first display, counting from the left */
Flip.Disc_1x7(1, 3, 0);

Function allows you to control a selected disc in a selected 1x7 display. You can control only one disc of the selected display at a time. The first argument module_number is the relative number of the display in the series of all 1x7 displays. For example, if we have a combination of D1X7, D7SEG, D1X7, then the second D1X7 display will have a relative number of 2 even though there is a D7SEG display between the D1X7 displays.

  • module_number - relative number of the D1X7 display
  • disc_number - display disc number counting from left to right 1-7
  • disc_status - reset disc "0" or set disc "1"

1️⃣7️⃣

Flip.Display_1x7(module_number, disc1 = 0xFF, disc2 = 0xFF, disc3 = 0xFF, 
                    disc4 = 0xFF, disc5 = 0xFF, disc6 = 0xFF, disc7 = 0xFF);
                    
/* Example function call. Reset the second and seventh disc counting from the left 
and set rest of the discs of the first 1x7 display, counting from the left */
Flip.Display_1x7(1, 1, 0, 1, 1, 1, 1, 0);

The function allows you to control up to seven discs of the selected display. The first argument is the relative number "module_number" of the display in the series of all 1x7 displays. For example, if we have a combination of D1X7, D7SEG, D1X7, then the second D1X7 display will have a relative number of 2 even though there is a D7SEG display between the D1X7 displays.

  • module_number - relative number of the D1X7 display
  • disc1, disc2, disc3, disc4, disc5, disc6, disc7 - display discs counting from left to right 1-7

Supported Displays & Modules

About

Arduino Library for Flip-disc Displays. The library allows you to easily control flip-disc displays connected in series. You can connect up to 8 different displays in any order. This library is intended for use with the displays designed by www.Flipo.io - Marcin Saj.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Languages