MAKING A DIGITAL CLOCK USING TFT 3.5INCH SHIELD +NANO R3 +DS3231 MODULE

:confused:Please Can any one give me the Arduino code for the above project?

Tusita

That's not a project, that's a parts list.

sorry i made mistake it should be a arduino uno r3

tusita

Can any one give me the Arduino code for the above project?

If you want someone to write code for you please click on 'report to moderator' and ask them to move this to 'gigs and collaborations' and indicate how much you are willing to pay.

If you want to learn to write code yourself start with the examples in the IDE and on this web site. If you get stuck read General guidance and
How to use this forum before asking a question.

Thank you.

If you do it yourself, I suggest the first activity is find a library to manage the screen, then write "hello world" to it.
One problem you will have is that the screen uses up most of the pins on an arduino uno so some tricks may be necessary. You need two pins for the DS3231 module (one of which is also used by the screen). You'll also need to add push buttons to set the clock although there are tricks to set the clock at the time of loading the sketch.

One good place to start is to download the AceTime library. In it there is an OLED based clock as well as world clock. I used this code in my project but changed the GUI interface to one based on GUISlice (another library). And I wrote my own WiFiManager, and used the Flash Storage library instead of an EEPROM. My first work was to just do a hack on his version, just a clock with Ntp service, and then integrate it into my full project.