Smartphone Control RGB Scrolling Text Display LED Matrix

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024

Комментарии • 980

  • @michaelmcpeters8098
    @michaelmcpeters8098 4 года назад +11

    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.

  • @porlosbarrios8073
    @porlosbarrios8073 2 года назад +14

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

  • @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

    • @rangraodesai1839
      @rangraodesai1839 2 года назад +1

      स्म

    • @jean-phiclerc5570
      @jean-phiclerc5570 2 года назад +2

      il existe des connecteurs à clipser qui evite les soudures

    • @ceasarcruz8312
      @ceasarcruz8312 Год назад

      so where's the problem then? just resolder that shit and be over it...

    • @MynameSP2001
      @MynameSP2001 Год назад +1

      bro cod mil sakta hai ky

  • @GreatProjects
    @GreatProjects 2 года назад +1

    Thanking you, Merry Christmas and keep you safe and healthy

  • @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.

  • @DjHimanshuKurthaNo1
    @DjHimanshuKurthaNo1 4 года назад

    Bhaut badhiya sir

  • @richardburt4769
    @richardburt4769 4 года назад +3

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

  • @tusharmishra474
    @tusharmishra474 2 года назад

    I have done all the connections like in the video and the program has been filled through you as given in the description.

    • @muruganmurugan507
      @muruganmurugan507 4 месяца назад

      Does it work after power cut like auto memory function

  • @Jayaramaka
    @Jayaramaka 4 года назад +11

    The code is not working please sen code

  • @dileepkumarsharma3155
    @dileepkumarsharma3155 4 года назад +2

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

  • @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

  • @catherineharris4746
    @catherineharris4746 2 года назад

    Simply OUTSTANDING!👍👍👍

  • @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

  • @manjeetsondh
    @manjeetsondh 4 года назад +1

    So nice and simply explained. Good job.

  • @bassmekanikproboosterz7791
    @bassmekanikproboosterz7791 3 года назад +4

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

  • @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 वीडियो बनाए प्लीज

  • @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

  • @DRCE777
    @DRCE777 2 года назад

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

  • @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 👌

  • @jeffjankiewicz5100
    @jeffjankiewicz5100 3 года назад +1

    Awesome build. Would work great for sign in back window of car for bad drivers who are too close(tailgaters)....IF YOU GET ANY CLOSER INTRODUCE YOURSELF. 1st message is polite. 2nd is not. I will build one😁

    • @LargeNuts
      @LargeNuts 3 года назад

      Illegal in almost all 50 states here in the US :( Was gunna make like a LED Scrolling Bumper thing.. But after checking any lights besides the brake/running/blinkers o the back of your care are illegal.. At least in the US.

  • @maninhodiassis6652
    @maninhodiassis6652 3 года назад +3

    Ótimo Projeto. Ganhou mais um inscrito.

  • @ankitamondal7014
    @ankitamondal7014 3 года назад

    good idea bro i also like this idea

  • @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 8 месяцев назад

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

  • @arvindnaidu1109
    @arvindnaidu1109 3 года назад +1

    1000000000000% super

  • @AndiGFPV
    @AndiGFPV 4 года назад +13

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

  • @Mr160572
    @Mr160572 3 года назад +1

    best Idea...

  • @muneebali3054
    @muneebali3054 4 года назад +3

    Can we use Other models of strips lights like 5050

  • @atanuhazra9696
    @atanuhazra9696 4 года назад

    দারুন লাগল 😊

  • @techy_science
    @techy_science 4 года назад +4

    Awesome 👍😍

  • @sathishapoojary5855
    @sathishapoojary5855 4 года назад +1

    Good... Very Easy..👍👍👍

  • @giovannygonzalez139
    @giovannygonzalez139 4 года назад +3

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

  • @Introvertutterances
    @Introvertutterances 4 года назад +1

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

  • @Shyamkumar-di5fu
    @Shyamkumar-di5fu 4 года назад +10

    Please make arduino oled clock

  • @pinulatinu
    @pinulatinu 3 года назад

    Hi, the project is amazing!! One question: without the module hc 05, work? only with the text in code?

  • @shriyatronics5634
    @shriyatronics5634 4 года назад +3

    Sir, please make keyboard type massage display

  • @DerHeety
    @DerHeety 4 года назад

    Ohne Widerstand am Datenpin und ggf. einen Kondensator für die Stromversorgung kann einem der Spaß daran ziemlich schnell vergehen. Sonst n schönes Projekt!

  • @adityakathirvel6209
    @adityakathirvel6209 4 года назад +4

    Can you also give the code in the description

  • @kanniahnaiduvenkatesh7094
    @kanniahnaiduvenkatesh7094 3 года назад

    Simple and good. Nice display.

  • @odedradev8490
    @odedradev8490 Год назад +3

    Sir please send code

  • @shreyamroymahapatra6853
    @shreyamroymahapatra6853 3 года назад

    Happy to see as bengali i from east midnapur conyai

  • @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

  • @ShandyPeiris
    @ShandyPeiris Год назад +1

    Great video brother but Diagram & Code link not working now

  • @edgarmedina5807
    @edgarmedina5807 4 года назад +3

    PODRIAS PONER LA PAGINA DONDE COMPRAS LOS MATERIALES

  • @misstkerl2108
    @misstkerl2108 4 года назад

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

  • @alexcamargo6664
    @alexcamargo6664 4 года назад +3

    Dónde y cuánto valen los materiales?

  • @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.

  • @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 ?

  • @ajaysharma4014
    @ajaysharma4014 2 года назад

    Great job

  • @christiana2161
    @christiana2161 4 года назад +3

    What kind of led strip did you use

  • @kothamasusureshbabu7616
    @kothamasusureshbabu7616 4 года назад

    Super work

  • @honeymubin007
    @honeymubin007 4 года назад +2

    How I can change the text with app?

  • @radhemanoj18
    @radhemanoj18 4 года назад

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

  • @adityakathirvel6209
    @adityakathirvel6209 4 года назад +5

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

  • @cj37373
    @cj37373 3 года назад +1

    If you solder your LED strips in parallel instead of doing so in series you will not only save time and make half as many soldering connections but also reduce current flowing through each of your connections and through your first strips, you will also be able to use thinner wire

    • @bestlytech
      @bestlytech Год назад +1

      these are addressable leds with data input and data output no way you can connect them in parallel

  • @Jayaramaka
    @Jayaramaka 4 года назад +9

    Sir please send right code

  • @pixeldecoration5215
    @pixeldecoration5215 4 года назад

    Osm guruji

  • @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

  • @gardloll5126
    @gardloll5126 4 года назад

    Great job, congratulations 😎

  • @gulabsingh68778
    @gulabsingh68778 4 года назад +6

    Can I increase led strips
    Please reply🙏🙏

  • @tuhinvai1438
    @tuhinvai1438 4 года назад +1

    very good

  • @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????

  • @landerrodriguez3987
    @landerrodriguez3987 3 года назад +1

    Excellent project. I made one a month ago and it worked perfect, now I replaced the arduino nano and it doesn't want to work. I have checked the code and it is correct. If you can help me I would really appreciate it. Thanks.

    • @eng.tkmelectr6598
      @eng.tkmelectr6598 2 года назад +2

      Hello there, I am interested in making it also. Would you mind assisting me with your code? The link provided there for diagram and code does not work 😭

  • @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

  • @VISIONLED
    @VISIONLED 4 года назад +2

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

  • @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 ? 🌷🌷

  • @RahulShinde-cs3le
    @RahulShinde-cs3le 4 года назад +1

    Which material are you using to make case

  • @askforonline8877
    @askforonline8877 4 года назад +3

    Where I get the code

  • @Repairguru9337
    @Repairguru9337 3 года назад

    Thanks a lot

  • @stan.rarick8556
    @stan.rarick8556 4 года назад +3

    "2820" ?

  • @anandbarnwal4590
    @anandbarnwal4590 4 года назад +1

    Very nice एंड easy

  • @RAJTECHTAMIL
    @RAJTECHTAMIL 2 года назад +7

    Send me the code

  • @MrJunedsana
    @MrJunedsana 4 года назад

    Nice project........

  • @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!!!!

  • @anupchakraborty8700
    @anupchakraborty8700 4 года назад

    ভাই খুব সুন্দর প্রজেক্ট তুলনা হয়না । এইটা জাস্ট আজকে বানালাম মোটামুটি ভালই kaj হচ্ছে আমি 2811 pexel led দিয়ে বানালাম।
    সবথেকে মজার ব্যাপার হলো এই apps টা কী করে বানালে যদি একটু আধটু জ্ঞান পাওয়া যেতো খুবই ভালো হতো। আমার বাড়ি নদিয়ার কৃষ্ণনগর। কী ভাবে আপ্নার সাথে যোগাযোগ করবো। অনেক অনেক ধন্যবাদ আপনাকে।

  • @christianalfaro2
    @christianalfaro2 3 года назад +1

    Nice vídeo. Question: what's the biggest área (number x number) of leds I can do with same components, arduino nano and HC 05 module, 5 v?

    • @agr00m
      @agr00m 3 года назад +4

      Theoretically infinite given an adequate power supply. The bottleneck would eventually be the data packet size for very large arrays vs the desired refresh rate. I think the WS2812b only has a refresh rate of 400Hz, so you'd probably max out pretty quick for large scrolling text displays. Using something like the WS2813, with a 2000Hz refresh rate, would be better for a large display.
      But to answer your question, you'd have to calculate the baud rate for n LEDs, then see if that results in an overall refresh rate of 26hz or higher (lower than that the movement starts to look choppy).

  • @Tamilselvan-fd3jg
    @Tamilselvan-fd3jg 4 года назад

    excellent idea

  • @rico_lebelge
    @rico_lebelge Год назад +1

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

  • @sagarsavaliya395
    @sagarsavaliya395 3 года назад +1

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

  • @RahulShinde-cs3le
    @RahulShinde-cs3le 4 года назад +1

    How to make this project using NodeMCU esp2866

  • @leilanielectronics
    @leilanielectronics Год назад

    Amazing!!

  • @gomtesh_jain
    @gomtesh_jain Год назад +1

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

  • @ramji.chauhan
    @ramji.chauhan 4 года назад +2

    Good job 👏

  • @leonardocaceres7442
    @leonardocaceres7442 3 года назад +1

    Buenas Tech el proyecto tambien se puede hacer con 64×16 ó que cambios se realiza

  • @billygoo7793
    @billygoo7793 4 года назад +1

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

    • @easytechzones
      @easytechzones  4 года назад

      5v dc

    • @billygoo7793
      @billygoo7793 4 года назад

      @@easytechzones Can this arduino program be 32x16 ?

    • @smiht76
      @smiht76 4 года назад

      5v DC. OK. But Amp.?

    • @vamsikrishna-cr4xu
      @vamsikrishna-cr4xu 4 года назад

      @@smiht76 1.5 to 2 amps

    • @rikpaul3702
      @rikpaul3702 4 года назад

      @@billygoo7793 yes u can do but have to modify the code

  • @erikhoffman
    @erikhoffman 3 года назад

    Wonderful project but can you add a rainbow colour option to give a bit of life, thanks - Erik Hoffman

  • @ianianian436
    @ianianian436 4 года назад

    Thats a great project. Can it be scaled up to make a display say 3 times bigger? will your code support a bigger display would like to try foe a festive display

    • @knightsun2920
      @knightsun2920 4 года назад

      The speed and data baud rate might be a problem, also you will likely need to remap all the LED's. There's only one data channel and it has to loop around all strands. This one by Josh Levine only has 7 strips in parallel but is nearly limitless with proper power inputs every so often. You have 2000 characters for a message as the message is stored in S-RAM. ruclips.net/video/k-SYMPO8-f8/видео.html

    • @ianianian436
      @ianianian436 3 года назад

      @@knightsun2920 thank you for the update

  • @المهندسللمعلوميات-ع4ك

    Thanks

  • @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

  • @BhairaviStudio
    @BhairaviStudio 4 года назад

    Do you manufacture on commercial scale ?

  • @dharminderkumar6455
    @dharminderkumar6455 4 года назад

    Very nic sir

  • @shivarajcm7154
    @shivarajcm7154 4 года назад +1

    Super sir
    How much voltage this circuit?

  • @felipejunior4432
    @felipejunior4432 2 года назад +2

    hello friend, I'm from Brazil, I always follow your channel, I'm trying to make a sign like yours, I'm having trouble making the program, could you make it available? thank you so much!

  • @jamesmartin3865
    @jamesmartin3865 2 года назад +1

    super

  • @Jayaramaka
    @Jayaramaka 3 года назад

    8x34 is working 👍👍

    • @andrewbrooks7724
      @andrewbrooks7724 3 года назад

      Did you have any problems with the code? When I upload the code to the Nano , no text is being displayed.

    • @Jayaramaka
      @Jayaramaka 3 года назад

      @@andrewbrooks7724 the code has sum error and i have correct the code

    • @andrewbrooks7724
      @andrewbrooks7724 3 года назад

      @@Jayaramaka I been working on this project for several weeks. You can even see I posted if anyone has a working display. Can you post or send me the code please? Thank you

  • @Eblimp
    @Eblimp 2 года назад

    what is the largest text panel you can control with this setup? can you do 16 x 128 ? (2048 pixel)

    • @natsume57
      @natsume57 Год назад

      It depends on your. Source code i think

  • @sulesharad
    @sulesharad 2 года назад

    Good day sir,
    Can we use 5050rgb led strip for thise project. Please guide

  • @ODanielAR
    @ODanielAR Год назад

    Muy buen proyecto amigo 👍 me gustaría saber las medidas que te quedó la matriz

  • @benjaminmuzalia7203
    @benjaminmuzalia7203 4 года назад

    It's incredible!

  • @Mr7Shawnmac
    @Mr7Shawnmac 2 года назад

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

  • @uttamdutta3664
    @uttamdutta3664 4 года назад +1

    superb..