|
Set to 1 if we are implementing the user interface pot, switch, etc
|
bet | 1/3 | Sana | 30.11.2023 | Hajmi | 0,51 Mb. | | #108104 |
Bog'liq 2 amaliy ish
O‘ZBEKISTON RESPUBLIKASI AXBOROT TEXNOLOGIYaLARI VA KOMMUNIKATSIYaLARINI RIVOJLANTIRISh VAZIRLIGI
MUHAMMAD AL-XORAZMIY NOMIDAGI
TOShKENT AXBOROT TEXNOLOGIYaLARI UNIVERSITETI
AMALIY
TOPShIRIQ №2
Bajardi:R va MAF ta’lim yo‘nalishi
811-20-guruh talabasi
Istamov Feruzjon.
Toshkent 2023
#include
#include
#include
// set to 1 if we are implementing the user interface pot, switch, etc
#define USE_UI_CONTROL 0
#if USE_UI_CONTROL
#include
#endif
// Turn on debug statements to the serial output
#define DEBUG 0
#if DEBUG
#define PRINT(s, x) { Serial.print(F(s)); Serial.print(x); }
#define PRINTS(x) Serial.print(F(x))
#define PRINTX(x) Serial.println(x, HEX)
#else
#define PRINT(s, x)
#define PRINTS(x)
#define PRINTX(x)
#endif
// Define the number of devices we have in the chain and the hardware interface
// NOTE: These pin numbers will probably not work with your hardware and may
// need to be adapted
#define HARDWARE_TYPE MD_MAX72XX::PAROLA_HW
#define MAX_DEVICES 11
#define CLK_PIN 13
#define DATA_PIN 11
#define CS_PIN 10
// HARDWARE SPI
MD_Parola P = MD_Parola(HARDWARE_TYPE, CS_PIN, MAX_DEVICES);
// SOFTWARE SPI
//MD_Parola P = MD_Parola(HARDWARE_TYPE, DATA_PIN, CLK_PIN, CS_PIN, MAX_DEVICES);
// Scrolling parameters
#if USE_UI_CONTROL
const uint8_t SPEED_IN = A5;
|
| |