Arduino tutorial on driving the MAX7219 7-segment 8-digit LED module
Arduino code: http://hastebin.com/axovofapag.coffee

By Julian

Youtuber, shed dweller, solar charge controller aficionado

16 thoughts on “Julian’s ardutorials: max7219 7-segment led display arduino”
  1. Avataaar/Circle Created with python_avatars OFP says:

    I tried everything,still my display is not working

  2. Avataaar/Circle Created with python_avatars Dass Tech says:

    Hi Everyone
    With following methods (functions) you can attach two 7219 modules
    output1 will send data to the first one and outout 2 will send it the second one,
    rest is the same as Julian has written.

    void output1(byte address, byte data)

    {

    digitalWrite(MAX7219_CS, LOW);

    shiftOut(MAX7219_DIN, MAX7219_CLK, MSBFIRST, 0);

    shiftOut(MAX7219_DIN, MAX7219_CLK, MSBFIRST, 0);

    shiftOut(MAX7219_DIN, MAX7219_CLK, MSBFIRST, address);

    shiftOut(MAX7219_DIN, MAX7219_CLK, MSBFIRST, data);

    digitalWrite(MAX7219_CS, HIGH);

    }

    void output2(byte address, byte data)

    {

    digitalWrite(MAX7219_CS, LOW);

    shiftOut(MAX7219_DIN, MAX7219_CLK, MSBFIRST, address);

    shiftOut(MAX7219_DIN, MAX7219_CLK, MSBFIRST, data);

    shiftOut(MAX7219_DIN, MAX7219_CLK, MSBFIRST, 0);

    shiftOut(MAX7219_DIN, MAX7219_CLK, MSBFIRST, 0);

    digitalWrite(MAX7219_CS, HIGH);

    }

  3. Avataaar/Circle Created with python_avatars swooosh83 says:

    Would you have to shut it down prior to cutting the power?

  4. Avataaar/Circle Created with python_avatars Ravi Teja says:

    unable to view the code sir.. could you check that

  5. Avataaar/Circle Created with python_avatars Abdulwahab Nasir says:

    The Arduino code URL isn't working

  6. Avataaar/Circle Created with python_avatars Biggere46 says:

    I'm a complete beginner, but I need to sort a days, hours, minutes seconds countdown display for a pullover. any suggestions?

  7. Avataaar/Circle Created with python_avatars acqurius 2018 says:

    how to display floating data on 8 digit based seven segment module.

  8. Avataaar/Circle Created with python_avatars Engr. Saqib Sohail says:

    Excellent tutorial. How you proceeded and solve the issues one by one. Just amazing

  9. Avataaar/Circle Created with python_avatars Renato Silva says:

    Excellent, this is the best tutorial in web. congratulations

  10. Avataaar/Circle Created with python_avatars The Fakey Cake Maker says:

    WOW! I cannot believe how easy this was to understand, I am a complete utter NOOB but I followed this easily. Thank you Julian! I really think I'll be able to get my project done now.

  11. Avataaar/Circle Created with python_avatars Stuart Ziane says:

    I have found this tutorial to be invaluable! Many thanks! I just need to do a little bit more work, as I'm not using the MAX7219 with Arduino ๐Ÿ˜€

  12. Avataaar/Circle Created with python_avatars Max Siebenschlรคfer says:

    Amazing tutorial I understand erverything ๐Ÿ˜‰

  13. Avataaar/Circle Created with python_avatars SK Suman says:

    how to activate point after a digit? please tell me the code.

  14. Avataaar/Circle Created with python_avatars Hashim Iqbal says:

    What is all the programming for. If I wanted to connect to FSX do I need to do the coding and If so what would it be. Help please

  15. Avataaar/Circle Created with python_avatars Pedro Vazquez says:

    Hi Julian! It's been a long time since I haven't come to see your tutorials. I'm back. I missed your teachings.

  16. Avataaar/Circle Created with python_avatars William Burlingame says:

    Great tutorial. Thanks!!!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.