okay im trying to get this program worked but it is coming up with the error exit status 1
'Scrolling_Text' was not declared in this scope
can someone please help me get this working
`//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Test P10
/*
* Original source code : https://github.com/busel7/DMDESP/blob/master/examples/TeksDiamdanJalan/TeksDiamdanJalan.ino by busel7
* Links to download libraries : https://github.com/busel7/DMDESP
*/
//----------------------------------------Include Library
//----------------------------------------see here: https://www.youtube.com/watch?v=8jMr94B8iN0 to add NodeMCU ESP8266 library and board
#include <DMDESP.h>
#include <fonts/ElektronMart6x8.h>
#include <fonts/Mono5x7.h>
//----------------------------------------
//----------------------------------------DMD Configuration (P10 Panel)
#define DISPLAYS_WIDE 1 //--> Panel Columns
#define DISPLAYS_HIGH 1 //--> Panel Rows
DMDESP Disp(DISPLAYS_WIDE, DISPLAYS_HIGH); //--> Number of Panels P10 used (Column, Row)
//----------------------------------------
//========================================================================VOID SETUP()
void setup() {
//----------------------------------------DMDESP Setup
Disp.start(); //--> Run the DMDESP library
Disp.setBrightness(50); //--> Brightness level
Disp.setFont(Mono5x7); //--> Determine the font used
//----------------------------------------
}
//========================================================================
//========================================================================VOID LOOP()
void loop() {
Disp.loop(); //--> Run "Disp.loop" to refresh the LED
Disp.drawText(4, 0, "UTEH"); //--> Display text "Disp.drawText(x position, y position, text)"
Scrolling_Text(9, 50); //--> Show running text "Scrolling_Text(y position, speed);"
}
//========================================================================
`