Smartphone Control RGB Scrolling Text Display LED Matrix

Поділитися
Вставка
  • Опубліковано 13 січ 2025

КОМЕНТАРІ • 984

  • @porlosbarrios8073
    @porlosbarrios8073 2 роки тому +15

    The diagram and the code are no longer available at the indicated link...
    How could i get it?
    thank you!!

  • @michaelmcpeters8098
    @michaelmcpeters8098 4 роки тому +13

    The only change I would recommend would be to evenly distribute the 5v/Gnd across the matrix.. (5v in one side, Gnd the other) it'll make sure the display is evenly lit across the strips.

  • @Jayaramaka
    @Jayaramaka 4 роки тому +11

    The code is not working please sen code

  • @GreatProjects
    @GreatProjects 3 роки тому +1

    Thanking you, Merry Christmas and keep you safe and healthy

  • @richardburt4769
    @richardburt4769 4 роки тому +3

    Excellent. One ? Where did you get those micro usb sockets?

  • @_ESHANIDAREKAR
    @_ESHANIDAREKAR 2 роки тому +1

    where did u connect the usb ? to the phone or the laptop?

  • @ec-008mahendra2
    @ec-008mahendra2 2 роки тому +7

    Can anyone provide the circuit diagram and required code for this video as the link given in description is not available

  • @catherineharris4746
    @catherineharris4746 2 роки тому

    Simply OUTSTANDING!👍👍👍

  • @suneetasandeep
    @suneetasandeep 3 роки тому +18

    The only small problem with these strips for making such display is the joint where two led strips is joined by manufacture. These joint normally misaligned the entrie matrix. For this de-soldering and re doing is required in order to align the same

  • @DjHimanshuKurthaNo1
    @DjHimanshuKurthaNo1 4 роки тому

    Bhaut badhiya sir

  • @niteshraul4460
    @niteshraul4460 4 роки тому +3

    Sir great job!

    • @easytechzones
      @easytechzones  4 роки тому

      Thankyou

    • @megam2009
      @megam2009 4 роки тому

      @@easytechzones hola easytech, no he podido copiar bien tu codigo, se muestran otros caracteres en el codigo y no compila, podrias subirlo a mega?

    • @hanyabdalla8045
      @hanyabdalla8045 4 роки тому +1

      @@megam2009
      #include
      #include "Arduino.h"
      #include //Include libraries: SoftwareSerial & Wire
      SoftwareSerial ESP_BT(0, 1); //Define PIN11 & PIN12 as RX and TX pins
      #include
      #include
      #include
      #include
      #ifndef PSTR
      #define PSTR // Make Arduino Due happy
      #endif
      #define PIN 5
      // MATRIX DECLARATION:
      // Parameter 1 = width of NeoPixel matrix
      // Parameter 2 = height of matrix
      // Parameter 3 = pin number (most are valid)
      // Parameter 4 = matrix layout flags, add together as needed:
      // NEO_MATRIX_TOP, NEO_MATRIX_BOTTOM, NEO_MATRIX_LEFT, NEO_MATRIX_RIGHT:
      // Position of the FIRST LED in the matrix; pick two, e.g.
      // NEO_MATRIX_TOP + NEO_MATRIX_LEFT for the top-left corner.
      // NEO_MATRIX_ROWS, NEO_MATRIX_COLUMNS: LEDs are arranged in horizontal
      // rows or in vertical columns, respectively; pick one or the other.
      // NEO_MATRIX_PROGRESSIVE, NEO_MATRIX_ZIGZAG: all rows/columns proceed
      // in the same order, or alternate lines reverse direction; pick one.
      // See example below for these values in action.
      // Parameter 5 = pixel type flags, add together as needed:
      // NEO_KHZ800 800 KHz bitstream (most NeoPixel products w/WS2812 LEDs)
      // NEO_KHZ400 400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers)
      // NEO_GRB Pixels are wired for GRB bitstream (most NeoPixel products)
      // NEO_GRBW Pixels are wired for GRBW bitstream (RGB+W NeoPixel products)
      // NEO_RGB Pixels are wired for RGB bitstream (v1 FLORA pixels, not v2)
      // Example for NeoPixel Shield. In this application we'd like to use it
      // as a 5x8 tall matrix, with the USB port positioned at the top of the
      // Arduino. When held that way, the first pixel is at the top right, and
      // lines are arranged in columns, progressive order. The shield uses
      // 800 KHz (v2) pixels that expect GRB color data.
      Adafruit_NeoMatrix matrix = Adafruit_NeoMatrix(
      32, //Select LEDs of each row (15 in my case)
      8, //Select amount of rows (7 in my case)
      PIN,
      NEO_MATRIX_BOTTOM + NEO_MATRIX_RIGHT + //Define first data pin (right bottom corner is my first pin)
      NEO_MATRIX_ROWS + NEO_MATRIX_ZIGZAG, //Define the type of connection (in a zig zag connections and divided by rows not columns)
      NEO_RGB + NEO_KHZ800);
      int Red = 255, Green = 0, Blue = 0;
      String text = "Easy Tech";
      String RGB;
      int pixelPerChar = 5, RGB_Completed = 0;
      int Delay, Brightness;
      const uint16_t colors[] = {matrix.Color(Green, Red, Blue)};
      // matrix.Color(255, 0, 0), matrix.Color(0, 255, 0), matrix.Color(0, 0, 255) };//matrix.Color(Red, Green, Blue),
      void initdata() {
      int Speed = EEPROM.read(0);
      if (Speed == NULL || Speed == 0) {
      Delay = 100;
      }
      else {
      Delay = Speed;
      }
      int bright = EEPROM.read(5);
      if (bright == NULL || bright == 0) {
      Brightness = 40;
      }
      else {
      Brightness = bright;
      }
      int r = EEPROM.read(10);
      if (r == NULL) {
      Red = 0;
      }
      else {
      Red = r;
      }
      int g = EEPROM.read(15);
      if (g == NULL) {
      Green = 255;
      }
      else {
      Green = g;
      }
      int b = EEPROM.read(20);
      if (b == NULL) {
      Blue = 0;
      }
      else {
      Blue = b;
      }
      char data[100]; //Max 100 Bytes
      int len = 0;
      char k;
      String Text = "";
      k = EEPROM.read(50);
      while (k != '\0' && len < 500) //Read until null character
      {
      k = EEPROM.read(50 + len);
      data[len] = k;
      Text += k;
      len++;
      }
      data[len] = '\0';
      if (Text == NULL) {
      text = "EASY TECH";
      }
      else {
      text = Text;
      }
      Serial.println(Speed);
      Serial.println(Brightness);
      Serial.println(Red);
      Serial.println(Green);
      Serial.println(Blue);
      Serial.println(text);
      }
      void setup() {
      Serial.begin(115200);
      ESP_BT.begin(9600);
      EEPROM.begin();
      initdata();
      // Serial.println("Start");
      const uint16_t colors[] = {matrix.Color(Green, Red, Blue)};
      matrix.begin();
      matrix.setTextWrap(false);
      matrix.setBrightness(Brightness);
      matrix.setTextColor(colors[0]);
      //matrix.setTextColor(matrix.Color(Green,Red,Blue));
      }
      int x = matrix.width();
      int pass = 0;
      void loop() {
      while (ESP_BT.available()) {
      char ReadChar = (char)ESP_BT.read();
      Serial.println(ReadChar);
      // Right parentheses ) indicates complet of the string
      if (ReadChar == ')' || ReadChar == '}' || ReadChar == ']') {
      if (ReadChar == ')' ) {
      RGB_Completed = 1;
      }

      if (ReadChar == '}') {
      RGB_Completed = 2;
      }

      if (ReadChar == ']') {
      RGB_Completed = 3;
      }
      }

      else {
      RGB += ReadChar;
      }
      }

      if (RGB_Completed != 0) {
      if (RGB_Completed == 1) {
      Light_RGB_LED();
      RGB_Completed = 0;
      }

      if (RGB_Completed == 2) {
      text = RGB;
      int _size = text.length();
      int i;

      for (i = 0; i < _size; i++) {
      EEPROM.write(50 + i, text.charAt(i));
      Serial.println(text.charAt(i));
      }

      EEPROM.write(50 + _size, '\0'); //Add termination null character for String Data
      RGB_Completed = 0;
      RGB = "";
      }

      if (RGB_Completed == 3) {
      int val = RGB.toInt();
      if (val > 0 && val = 1) {
      pass = 0;
      // matrix.setTextColor(colors[pass]);
      matrix.setTextColor(matrix.Color(Green, Red, Blue));
      // matrix.setTextColor(matrix.Color(Red,Green,Blue));
      }
      }
      matrix.show();
      delay(Delay);
      }
      void Light_RGB_LED() {
      int SP1 = RGB.indexOf('.');
      int SP2 = RGB.indexOf('.', SP1 + 1);
      int SP3 = RGB.indexOf('.', SP2 + 1);
      String R = RGB.substring(0, SP1);
      String G = RGB.substring(SP1 + 1, SP2);
      String B = RGB.substring(SP2 + 1, SP3);
      Red = R.toInt(); Green = G.toInt(); Blue = B.toInt();
      // Serial.println(R);
      matrix.setTextColor(matrix.Color(Green, Red, Blue));
      EEPROM.write(10, Red); EEPROM.write(15, Green); EEPROM.write(20, Blue);
      RGB = "";
      }

    • @kanniahnaiduvenkatesh7094
      @kanniahnaiduvenkatesh7094 2 роки тому +1

      @@hanyabdalla8045 Its working or not? shall i try with this code bro?

    • @hanyabdalla8045
      @hanyabdalla8045 2 роки тому +1

      @@kanniahnaiduvenkatesh7094 it's work perfect 👌

  • @VishalYamgar
    @VishalYamgar 4 роки тому +1

    Ye music ke sath visualize hota he kya

  • @bassmekanikproboosterz7791
    @bassmekanikproboosterz7791 3 роки тому +4

    Excelente el proyecto. Se podria hacer un poco mas grande? Podrias hacer uno mas grande para el proximo video

  • @BhairaviStudio
    @BhairaviStudio 4 роки тому

    Do you manufacture on commercial scale ?

  • @maninhodiassis6652
    @maninhodiassis6652 4 роки тому +3

    Ótimo Projeto. Ganhou mais um inscrito.

  • @rico_lebelge
    @rico_lebelge Рік тому +1

    Dear, Diagram & Code seems no more available. Would it be possible to repost please ? Thanks a lot !

  • @tonyrodrigues7427
    @tonyrodrigues7427 4 роки тому +4

    Its a great project. I would like to know if you can use uno and how to do the coding. Thanks

    • @priyaop5040
      @priyaop5040 3 роки тому

      Everything is same in Arduino Uno as in Arduino nano.
      U can use same code as well as same pin configuration.
      U just have to select the specific type of board before uploading in Arduino IDE.

    • @Shivam-rj6is
      @Shivam-rj6is 10 місяців тому

      @@priyaop5040 in the tools section what should be its programming

  • @RahulShinde-cs3le
    @RahulShinde-cs3le 4 роки тому +1

    Which material are you using to make case

  • @maikmario71
    @maikmario71 4 роки тому +8

    Sehr gut ! Die Music ist nur schrecklich

    • @maskeddagyt3348
      @maskeddagyt3348 4 роки тому

      If you don't have that you can use any other socket

  • @tahirsherasiya6913
    @tahirsherasiya6913 3 роки тому

    Sar LED konse colar vali Lena padega plz batado

  • @techy_science
    @techy_science 4 роки тому +4

    Awesome 👍😍

  • @electrotechcr2510
    @electrotechcr2510 4 роки тому +1

    Can i use 5mm leds matrix board ?

    • @knightsun2920
      @knightsun2920 4 роки тому

      Standard LED no, unless they are 5mm APA106. The WS2812B, APA106 and others have a microcontroller built into them and have a Ground, 5V, Data in and Data out.

  • @muneebali3054
    @muneebali3054 4 роки тому +3

    Can we use Other models of strips lights like 5050

  • @dileepkumarsharma3155
    @dileepkumarsharma3155 4 роки тому +2

    Amazing video bro 👍👌👌😘
    Good night my lovely friend😇😊

  • @adityakathirvel6209
    @adityakathirvel6209 4 роки тому +5

    Can you also give the code in the description

  • @Shivanisharma-fc6xp
    @Shivanisharma-fc6xp 7 місяців тому +1

    Sir esme kon kon se components used huye h or kitni quantity m h

    • @easytechzones
      @easytechzones  7 місяців тому

      Kindly check latest video. Updated program

  • @andersondepaula8460
    @andersondepaula8460 4 роки тому +8

    good afternoon i would like to know how to get into the arduino configuration to add the number of leds i will use in a VU project

  • @sathishapoojary5855
    @sathishapoojary5855 4 роки тому +1

    Good... Very Easy..👍👍👍

  • @gulabsingh68778
    @gulabsingh68778 4 роки тому +6

    Can I increase led strips
    Please reply🙏🙏

  • @ShandyPeiris
    @ShandyPeiris Рік тому +1

    Great video brother but Diagram & Code link not working now

  • @honeymubin007
    @honeymubin007 4 роки тому +2

    How I can change the text with app?

  • @manjeetsondh
    @manjeetsondh 4 роки тому +1

    So nice and simply explained. Good job.

  • @odedradev8490
    @odedradev8490 Рік тому +3

    Sir please send code

  • @kobitadurgesh6123
    @kobitadurgesh6123 4 роки тому +2

    Thank you so much giving my answer. But iam face one problem you can use 256 pcs rgb led but but iam use 512pcs rgb led . When conection led pin-Gnd, Do, Vcc in series then iam not understand whos led pin in the main out of ardino nano and why you are didnot soldaring last led Gnd do vcc pin. Please give my answer soon.

  • @Shyamkumar-di5fu
    @Shyamkumar-di5fu 4 роки тому +10

    Please make arduino oled clock

  • @ankitamondal7014
    @ankitamondal7014 3 роки тому

    good idea bro i also like this idea

  • @AndiGFPV
    @AndiGFPV 4 роки тому +13

    tin that damn wires before soldering... can´t watch this....

  • @SaleemMukhtiar32
    @SaleemMukhtiar32 3 роки тому

    can I use arduno uno instead nano

  • @shriyatronics5634
    @shriyatronics5634 4 роки тому +3

    Sir, please make keyboard type massage display

  • @akhandBharat_661
    @akhandBharat_661 4 роки тому

    Sir other led use kar sakte he

  • @NileshPatel-ic4zc
    @NileshPatel-ic4zc 4 роки тому +3

    Message ek bar type karne par run karta rahega n

    • @easytechzones
      @easytechzones  4 роки тому

      Karega

    • @anupchakraborty8700
      @anupchakraborty8700 4 роки тому

      @@easytechzones Bluetooth power off honeka bad ,next time on kornese display run nehi hotahain , 2nd time Bluetooth connect korke text send korna parta hain, text save korneka kuch option batiye plese,
      Project bhaut achha kam kartahai bhai very good,
      But RGB text color apka mobile apps ka sath match nehi hotahain, main Rx,TX arduino ka 11,12 connect kiya
      Text single led se run hotahai text bold ka kuch option????

  • @riteshmahajan1497
    @riteshmahajan1497 4 роки тому

    Bro ye sunboard kaha pe milega konse shop pe milta hai ye

  • @christiana2161
    @christiana2161 4 роки тому +3

    What kind of led strip did you use

  • @birupakhyamishra5078
    @birupakhyamishra5078 2 роки тому

    Pixel led wire wala sa hoga ya nai

  • @markangelobonavente615
    @markangelobonavente615 4 роки тому +3

    How to get that code to upload?

    • @easytechzones
      @easytechzones  4 роки тому

      check description for code.

    • @BillyGates1721
      @BillyGates1721 4 роки тому

      look up the code-version at post #8. This code-version compiles
      forum.arduino.cc/index.php?topic=707456.msg4754609#msg4754609

    • @theFlowChannel
      @theFlowChannel 2 роки тому

      @@easytechzones it says the website is for sale can you please update the link in the desciption would appreciate it ? 🌷🌷

  • @ShrutiGarg-p7h
    @ShrutiGarg-p7h Рік тому

    Arduino m kha jake RGB wa2812 ko control k liye kha jana hoga

  • @giovannygonzalez139
    @giovannygonzalez139 4 роки тому +3

    Excelente. Me suscribo sin dudarlo. El idioma no es barrera para ti...

  • @idolasr4269
    @idolasr4269 Рік тому

    Itna achha banaye aaap
    Par agar wire connection thora deatails me bata ya dikha dete to bahut mehabani hoti।।।।।
    Wire connection pe ek वीडियो बनाए प्लीज

  • @jayakrishnanvg1
    @jayakrishnanvg1 4 роки тому +3

    For connecting the terminals using the Red Yellow Black wires, cut the ends at an angle like 60 or 75 degrees for easiness. Thank you for the videos my friend.

  • @jorgerodrigues745
    @jorgerodrigues745 2 роки тому

    Hi, is possíble work with 12v power?

  • @PepsterMuze
    @PepsterMuze 4 роки тому +3

    When I try to upload the code, I get on the #include <EEPROM.h> line is highlight in pink, like there is something wrong, can't upload the code, any suggestion? Thanks

  • @binchostoyanov7139
    @binchostoyanov7139 3 роки тому

    Is the phone has to be connected all the time?

  • @edgarmedina5807
    @edgarmedina5807 4 роки тому +3

    PODRIAS PONER LA PAGINA DONDE COMPRAS LOS MATERIALES

  • @VISIONLED
    @VISIONLED 4 роки тому +2

    Nice bro .can you share the app please ? i just wanted the file out side of play store .

  • @adityakathirvel6209
    @adityakathirvel6209 4 роки тому +5

    Can you send the code and diagram in the form of google files via email,sir?

  • @sagarsavaliya395
    @sagarsavaliya395 3 роки тому +1

    Nice project bro
    Can you help me about uploading programming to nano?

  • @RAJTECHTAMIL
    @RAJTECHTAMIL 2 роки тому +7

    Send me the code

  • @Premnishad1207
    @Premnishad1207 2 роки тому

    Bhai Arduino nano ka code mobile se bhi upload kar sakte hai kya...

  • @RalwinsRodriguez
    @RalwinsRodriguez 4 роки тому +3

    I NEED HELP PLEASE

    • @BillyGates1721
      @BillyGates1721 4 роки тому

      look up the code-version at post #8. This code-version compiles
      forum.arduino.cc/index.php?topic=707456.msg4754609#msg4754609

  • @christianalfaro2
    @christianalfaro2 3 роки тому

    Are you using an Arduino clon o an original Arduino?

  • @askforonline8877
    @askforonline8877 4 роки тому +3

    Where I get the code

  • @DRCE777
    @DRCE777 2 роки тому

    So cool! I'm gonna make this someday. 😁

  • @alexcamargo6664
    @alexcamargo6664 4 роки тому +3

    Dónde y cuánto valen los materiales?

  • @misstkerl2108
    @misstkerl2108 4 роки тому

    Sau geil 👍👍👍
    Kleine Frage wie breit ist das pvc Board?

  • @ersindemir6637
    @ersindemir6637 4 роки тому +3

    Greetings from Turkey. Can you send me the "ardunio file" of your SmartPhone control rgb scrolling text display led matrix project by mail ?

  • @bimokayoba
    @bimokayoba Рік тому

    can i use my app that i created but not shared in google play ? or a website ?

  • @TechnicalikotKCArtworx
    @TechnicalikotKCArtworx 4 роки тому +3

    Can u help me about the code..when i compile it seems to much error..thank u

    • @maskeddagyt3348
      @maskeddagyt3348 4 роки тому

      Try to reset your arduino. A little button on top right corner
      Check the port and name of board in your sketch on tools

    • @BillyGates1721
      @BillyGates1721 4 роки тому

      look up the code-version at post #8. This code-version compiles
      forum.arduino.cc/index.php?topic=707456.msg4754609#msg4754609

  • @shahidphotocopier
    @shahidphotocopier 4 роки тому +1

    can i use any multi colour rgb strip?

  • @Jayaramaka
    @Jayaramaka 4 роки тому +9

    Sir please send right code

  • @mohansolanki9609
    @mohansolanki9609 4 роки тому +1

    which library did you used

    • @easytechzones
      @easytechzones  4 роки тому

      Everything on code. Pleade check code

    • @easytechzones
      @easytechzones  4 роки тому

      Link in description box

    • @mohansolanki9609
      @mohansolanki9609 4 роки тому

      @@easytechzones in arduino nano software it is not working

    • @mohansolanki9609
      @mohansolanki9609 4 роки тому

      @@easytechzones i copied the codes and paste in the Arduino nano software it is not uploading

  • @stan.rarick8556
    @stan.rarick8556 4 роки тому +3

    "2820" ?

  • @gurindersingh1293
    @gurindersingh1293 4 роки тому +2

    Sir kya RGB normal strip bhi laga sakte hai 🙏

  • @radhemanoj18
    @radhemanoj18 4 роки тому

    बहुत ही सुंदर बनाया है आप ने। LEDstripe का दाम क्या है। 2812b का 60/m है।

  • @anandbarnwal4590
    @anandbarnwal4590 4 роки тому +1

    Very nice एंड easy

  • @nxkaran2799
    @nxkaran2799 3 роки тому

    Kit driver ka naam or modal number kya hai hai humko kiti driver ka link cahiye aapne name light me youj kiye hai

  • @shreyamroymahapatra6853
    @shreyamroymahapatra6853 3 роки тому

    Happy to see as bengali i from east midnapur conyai

  • @atanuhazra9696
    @atanuhazra9696 4 роки тому

    দারুন লাগল 😊

  • @ajaysharma4014
    @ajaysharma4014 2 роки тому +1

    Kya 48*8 ban sakta hai batay

  • @Introvertutterances
    @Introvertutterances 4 роки тому +1

    Nice bro.. please provide the buying link of all that products..

  • @Mr160572
    @Mr160572 3 роки тому +1

    best Idea...

  • @KoshaleNews
    @KoshaleNews 2 роки тому

    Series me connect karke how is this possible
    Wo bhi sirf 3 wire se 3 colour
    Text scrolling
    Ye strip v program ho ke ata hai kya

  • @mrvbcreation9848
    @mrvbcreation9848 2 роки тому

    क्या ये बोर्ड कार की बॅटरी पे चलेगा सर

  • @IndonesianGaming
    @IndonesianGaming 4 роки тому +1

    What music did you use on 8:00

  • @arvindnaidu1109
    @arvindnaidu1109 3 роки тому

    Are you conduct online class?

  • @shanthraj8030
    @shanthraj8030 3 роки тому

    Super how much prices

  • @ds-dt4fz
    @ds-dt4fz 4 роки тому

    Nice.muje ve ak saheya..kiya app bana da sakti ho?

  • @tonyp4894
    @tonyp4894 10 місяців тому

    What kind of clue are you using to put the box together. Seems like it bonds together immediately.

  • @Mr7Shawnmac
    @Mr7Shawnmac 2 роки тому

    Where can I buy the negative, positive, and neutral wire? I've looked everywhere

  • @rakshithds9295
    @rakshithds9295 4 роки тому +1

    Which software will u use to program aurdino

  • @christianalfaro2
    @christianalfaro2 3 роки тому

    Can use Bluetooth module hc-06?

  • @kanniahnaiduvenkatesh7094
    @kanniahnaiduvenkatesh7094 3 роки тому

    Simple and good. Nice display.

  • @kuberelectricalappliances1972
    @kuberelectricalappliances1972 2 роки тому +1

    hello can u share the diagram and code please

  • @kobitadurgesh6123
    @kobitadurgesh6123 4 роки тому

    Bro good job I see your all video
    and big fan of your. Please this borad convert a rgb led clock and rgb led borad. Iam watting of your answer. Please bro give your answer soon

  • @djsofyavatmal3240
    @djsofyavatmal3240 2 роки тому

    Sir... How much meter led strip required ?

  • @gsmrkrishna6623
    @gsmrkrishna6623 3 роки тому

    Sir Ji Ye Sun Board Aur PVC Sheet kahan milegi

  • @emanueldrobila4206
    @emanueldrobila4206 4 роки тому +1

    Hy. Its a nice project you have done. But i have problems. I juse W2812b LED Stripes. The Sketch ive saved on the Nano and the Bluetooh work. But on the LED Stripes dont come your LOGO "EASY TECH". The LED Stripe dont shine enything. With the App i send a text, it dont wont to work to. Can you help me to find out whats the problem. Best regards and Thank you!!!!

  • @moheennipanikar2571
    @moheennipanikar2571 2 роки тому

    Where to buy sunboard

  • @gomtesh_jain
    @gomtesh_jain Рік тому +1

    Bro i ask a one question. This project are truly successful for work?

  • @billygoo7793
    @billygoo7793 4 роки тому +1

    Great !!! How many volts do you use for power supply?

  • @sandys1513
    @sandys1513 2 роки тому

    Is there any other board that can be used for it?