├── .gitignore ├── Analog_Clock_Control ├── AnalogClockControl │ └── AnalogClockControl.ino ├── RTCAnalogClockControl │ └── RTCAnalogClockControl.ino ├── assembly.md ├── img │ ├── .DS_Store │ ├── clock-control-01.jpg │ ├── clock-control-02.jpg │ ├── clock-control-03.jpg │ ├── clock-control-04.jpg │ ├── clock-control-05.jpg │ ├── clock-control-06.jpg │ ├── clock-control-07.jpg │ ├── clock-control-08.jpg │ ├── clock-control-09.jpg │ ├── clock-control-10.jpg │ ├── clock-control-11.jpg │ ├── clock-control-12.jpg │ ├── clock-control-13.jpg │ ├── clock-control-14.jpg │ ├── clock-control-15.jpg │ ├── clock-control-16.jpg │ ├── clock-control-17.jpg │ ├── clock_control.fzz │ ├── clock_control_Pi_bb.png │ ├── clock_control_Uno_bb.png │ ├── clock_control_schem.png │ ├── clock_control_schem.svg │ └── clock_control_schem@3x.png ├── nodejsAnalogClockControl │ ├── gpioControl.js │ ├── package.json │ └── readme.md └── readme.md ├── Examples └── img │ ├── Antikythera.jpg │ ├── ArielleHeinSun.jpeg │ ├── BenLightMagnet.jpg │ ├── ByzantineSundial.jpg │ ├── DondiAstrarium.jpg │ ├── FeddersenMoon.jpg │ ├── GearedAstrolabe.jpg │ ├── HarrisonH1.jpg │ ├── HarrisonH4.jpg │ ├── PlanetariumWatch.jpg │ ├── RittenhouseOrrery.jpg │ ├── Strasbourgh.jpg │ ├── SuSong.jpg │ ├── alJazari.jpg │ └── egyptianSundial1300BC.png ├── Making_Custom_Clock_Hands ├── ClocKit_standard_shafts.vwx ├── clock-kit-drawings │ ├── VW Backup │ │ └── clock-kit-shafts-Backup-20180603103842.vwx │ ├── clock-kit-board.brd │ ├── clock-kit-board.pdf │ ├── clock-kit-board.sch │ ├── clock-kit-shafts.eps │ ├── clock-kit-shafts.svg │ ├── clock-kit-shafts.vwx │ ├── hourHandInside.svg │ ├── hourHandOutside.svg │ ├── minuteHandInside.svg │ ├── minuteHandOutside.svg │ ├── secondHandInside.svg │ └── secondHandOutside.svg ├── img │ ├── brass-hands-after-tumbling.jpeg │ ├── clock-control-18.jpg │ ├── clock-control-19.jpg │ ├── clock-control-20.jpg │ ├── clock-control-21.jpg │ ├── clock-control-22.jpg │ ├── clock-control-23.jpg │ ├── copper-spoilboard-for-hand-milling.jpeg │ ├── fillets.png │ ├── hands-on-clock-shaft.jpeg │ ├── homemade-hands-in-progress.jpeg │ └── store-bought-clock-hands.gif ├── readme.md └── shaft_templates_VID28_Clockit.svg ├── Microcontroller_Time_Setting_Methods ├── .DS_Store ├── CompileTimeSet │ └── CompileTimeSet.ino ├── EncoderTimeSet │ └── EncoderTimeSet.ino ├── EncoderTimeSetWithOLEDDisplay │ └── EncoderTimeSetWithOLEDDisplay.ino ├── PushbuttonTimeSet │ ├── .DS_Store │ └── PushbuttonTimeSet.ino ├── RTCInterval │ └── RTCInterval.ino ├── RTCIntervalAlternate │ └── RTCIntervalAlternate.ino ├── StringDateSet │ └── StringDateSet.ino ├── StringTimeSet │ └── StringTimeSet.ino ├── StringTimeSetNoRTC │ └── StringTimeSetNoRTC.ino ├── Timezones_DaylightSavings │ └── Timezones_DaylightSavings.ino ├── WiFiTimeSet │ └── WiFiTimeSet.ino └── readme.md ├── P5JS_examples ├── SunMoonClock │ ├── index.html │ ├── libraries │ │ ├── p5.dom.js │ │ ├── p5.js │ │ └── suncalc.js │ └── sketch.js ├── clock001 │ ├── index.html │ └── sketch.js ├── clock002 │ ├── EncoderClockSetter │ │ └── EncoderClockSetter.ino │ ├── index.html │ └── sketch.js ├── clock003 │ ├── EncoderKeyboardClockSetter │ │ └── EncoderKeyboardClockSetter.ino │ ├── index.html │ └── sketch.js ├── clockAnimationTest │ ├── assets │ │ ├── clockTemplate copy.svg │ │ ├── clockTemplate.svg │ │ ├── clockTemplate_thin.svg │ │ ├── faceLayer.png │ │ ├── hourLayer.png │ │ ├── minuteLayer.png │ │ └── secondLayer.png │ ├── index.html │ ├── libraries │ │ ├── p5.dom.js │ │ └── p5.js │ ├── readme.md │ └── sketch.js ├── colorClock │ ├── index.html │ ├── libraries │ │ └── p5.js │ └── sketch.js ├── decimalClock │ ├── index.html │ ├── libraries │ │ ├── p5.dom.js │ │ ├── p5.js │ │ ├── p5.serialport.js │ │ └── p5.sound.js │ └── sketch.js ├── readme.md ├── spirals │ ├── index.html │ ├── libraries │ │ ├── p5.dom.js │ │ ├── p5.js │ │ └── p5.sound.js │ └── sketch.js └── tidalclock │ ├── index.html │ ├── libraries │ ├── p5.dom.js │ ├── p5.js │ ├── p5.serialport.js │ └── p5.sound.js │ └── sketch.js ├── Programmable_LED_examples ├── .DS_Store ├── APA102_clocl │ └── APA102RoundClockNetwork │ │ └── APA102RoundClockNetwork.ino ├── NeoPixelClock │ ├── NeoPixelClock001 │ │ └── NeoPixelClock001.ino │ ├── NeoPixelRoundClock │ │ └── NeoPixelRoundClock.ino │ └── NeoPixelRoundClockNetwork │ │ └── NeoPixelRoundClockNetwork.ino ├── programmable_LED_clocks.md └── readme.md ├── RTC_Clock_Examples ├── RTCClockAvagoDisplay │ └── RTCClockAvagoDisplay.ino ├── RTCClockEmic2Display │ └── RTCClockEmic2Display.ino ├── RTCClockEpaperDisplay │ └── RTCClockEpaperDisplay.ino ├── RTCClockSSD1306Display │ └── RTCClockSSD1306Display.ino ├── RTCClockSerialDisplay │ └── RTCClockSerialDisplay.ino ├── RTCRoundTFTDisplayAnalogClock │ └── RTCRoundTFTDisplayAnalogClock.ino ├── RTCRoundTFTDisplayDecimalClock │ └── RTCRoundTFTDisplayDecimalClock.ino ├── RTC_EInk_QRCode │ └── RTC_EInk_QRCode.ino ├── RTC_EInk_Text │ └── RTC_EInk_Text.ino ├── WiFiTimeDriftCheck │ ├── WiFiTimeDriftCheck.ino │ └── arduino_secrets.h ├── WiFiTimeDriftCheckSD │ ├── WiFiTimeDriftCheckSD.ino │ └── arduino_secrets.h └── readme.md ├── RoundDisplays └── ST76975_round_display │ └── ST76975_round_display.ino ├── VID28-05_mechanism ├── DiscreteMinuteSecondHandTest │ └── DiscreteMinuteSecondHandTest.ino ├── DiscreteMinuteSecondHandTest002 │ └── DiscreteMinuteSecondHandTest002.ino ├── DiscreteMinuteSecondHandTest003 │ └── DiscreteMinuteSecondHandTest003.ino ├── SweepMinuteSecondHandTest │ └── SweepMinuteSecondHandTest.ino ├── TwoMotorTest │ └── TwoMotorTest.ino ├── VID28-05_hands.svg ├── VID28-05_hands.vwx ├── VID28_board_0001.png ├── VID28_eagle_01 │ ├── VID28_board_0001.brd │ └── VID28_board_0001.sch ├── VW Backup │ └── VID28-05_footprint-Backup-20180524060535.vwx └── readme.md ├── WhatNotToDoClock ├── WhatNotToDoClock001 │ └── WhatNotToDoClock001.ino ├── readme.md └── what-not-to-do-clock.jpg ├── _config.yml ├── _includes └── nav.html ├── _layouts ├── default.html └── wifi.md ├── bibliography.md ├── can_clocks ├── clock-kit-shafts_short 2.vwx ├── clock-kit-shafts_thin.eps ├── clock-kit-shafts_thin.vwx ├── hourHandInside.svg ├── hourHandOutside.svg ├── minuteHandInside.svg ├── minuteHandOutside.svg ├── secondHandIntside.svg └── secondHandOutside.svg ├── moire_kinetic_clock ├── .DS_Store └── ver_001 │ ├── moire_square.ai │ └── moire_square.vwx ├── notes.md ├── organizations.md ├── parts.md ├── projects.md ├── readme.md ├── timestamps.md ├── tools.md ├── two_stepper_clock_mechanism ├── .DS_Store ├── Assembly instructions.txt ├── Bill of Materials.xlsx ├── img │ ├── bottom_plate_assembly.jpg │ ├── fully_assembled.jpg │ └── top_and_bottom_assemblies.jpg ├── motor_clipA.svg ├── motor_clipB.svg ├── mounting_plates_bot.svg ├── mounting_plates_mid.svg ├── mounting_plates_top.svg ├── readme.md ├── stepper_mount_sketch.vwx └── version_one_archived │ ├── .DS_Store │ ├── ClockPiece.txt │ ├── bill_of_materials.md.txt │ └── two_arm_laser_files │ ├── Bill of Materials.xlsx │ ├── breadboard_baseplate_002C.ai │ ├── motor_clipA.svg │ ├── motor_clipB.svg │ ├── mounting_plates_bot.svg │ ├── mounting_plates_mid.svg │ ├── mounting_plates_top.svg │ ├── readme.txt │ ├── stepper_motor_mount_002.ai │ ├── stepper_motor_mount_002B.ai │ └── stepper_mount_sketch.vwx └── works.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/.gitignore -------------------------------------------------------------------------------- /Analog_Clock_Control/AnalogClockControl/AnalogClockControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/AnalogClockControl/AnalogClockControl.ino -------------------------------------------------------------------------------- /Analog_Clock_Control/RTCAnalogClockControl/RTCAnalogClockControl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/RTCAnalogClockControl/RTCAnalogClockControl.ino -------------------------------------------------------------------------------- /Analog_Clock_Control/assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/assembly.md -------------------------------------------------------------------------------- /Analog_Clock_Control/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/.DS_Store -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-01.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-02.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-03.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-04.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-05.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-06.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-07.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-08.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-09.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-10.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-11.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-12.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-13.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-14.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-15.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-16.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock-control-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock-control-17.jpg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock_control.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock_control.fzz -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock_control_Pi_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock_control_Pi_bb.png -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock_control_Uno_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock_control_Uno_bb.png -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock_control_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock_control_schem.png -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock_control_schem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock_control_schem.svg -------------------------------------------------------------------------------- /Analog_Clock_Control/img/clock_control_schem@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/img/clock_control_schem@3x.png -------------------------------------------------------------------------------- /Analog_Clock_Control/nodejsAnalogClockControl/gpioControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/nodejsAnalogClockControl/gpioControl.js -------------------------------------------------------------------------------- /Analog_Clock_Control/nodejsAnalogClockControl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/nodejsAnalogClockControl/package.json -------------------------------------------------------------------------------- /Analog_Clock_Control/nodejsAnalogClockControl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/nodejsAnalogClockControl/readme.md -------------------------------------------------------------------------------- /Analog_Clock_Control/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Analog_Clock_Control/readme.md -------------------------------------------------------------------------------- /Examples/img/Antikythera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/Antikythera.jpg -------------------------------------------------------------------------------- /Examples/img/ArielleHeinSun.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/ArielleHeinSun.jpeg -------------------------------------------------------------------------------- /Examples/img/BenLightMagnet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/BenLightMagnet.jpg -------------------------------------------------------------------------------- /Examples/img/ByzantineSundial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/ByzantineSundial.jpg -------------------------------------------------------------------------------- /Examples/img/DondiAstrarium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/DondiAstrarium.jpg -------------------------------------------------------------------------------- /Examples/img/FeddersenMoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/FeddersenMoon.jpg -------------------------------------------------------------------------------- /Examples/img/GearedAstrolabe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/GearedAstrolabe.jpg -------------------------------------------------------------------------------- /Examples/img/HarrisonH1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/HarrisonH1.jpg -------------------------------------------------------------------------------- /Examples/img/HarrisonH4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/HarrisonH4.jpg -------------------------------------------------------------------------------- /Examples/img/PlanetariumWatch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/PlanetariumWatch.jpg -------------------------------------------------------------------------------- /Examples/img/RittenhouseOrrery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/RittenhouseOrrery.jpg -------------------------------------------------------------------------------- /Examples/img/Strasbourgh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/Strasbourgh.jpg -------------------------------------------------------------------------------- /Examples/img/SuSong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/SuSong.jpg -------------------------------------------------------------------------------- /Examples/img/alJazari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/alJazari.jpg -------------------------------------------------------------------------------- /Examples/img/egyptianSundial1300BC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Examples/img/egyptianSundial1300BC.png -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/ClocKit_standard_shafts.vwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/ClocKit_standard_shafts.vwx -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/VW Backup/clock-kit-shafts-Backup-20180603103842.vwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/VW Backup/clock-kit-shafts-Backup-20180603103842.vwx -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/clock-kit-board.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/clock-kit-board.brd -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/clock-kit-board.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/clock-kit-board.pdf -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/clock-kit-board.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/clock-kit-board.sch -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/clock-kit-shafts.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/clock-kit-shafts.eps -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/clock-kit-shafts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/clock-kit-shafts.svg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/clock-kit-shafts.vwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/clock-kit-shafts.vwx -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/hourHandInside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/hourHandInside.svg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/hourHandOutside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/hourHandOutside.svg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/minuteHandInside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/minuteHandInside.svg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/minuteHandOutside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/minuteHandOutside.svg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/secondHandInside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/secondHandInside.svg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/clock-kit-drawings/secondHandOutside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/clock-kit-drawings/secondHandOutside.svg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/img/brass-hands-after-tumbling.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/img/brass-hands-after-tumbling.jpeg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/img/clock-control-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/img/clock-control-18.jpg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/img/clock-control-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/img/clock-control-19.jpg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/img/clock-control-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/img/clock-control-20.jpg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/img/clock-control-21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/img/clock-control-21.jpg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/img/clock-control-22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/img/clock-control-22.jpg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/img/clock-control-23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/img/clock-control-23.jpg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/img/copper-spoilboard-for-hand-milling.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/img/copper-spoilboard-for-hand-milling.jpeg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/img/fillets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/img/fillets.png -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/img/hands-on-clock-shaft.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/img/hands-on-clock-shaft.jpeg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/img/homemade-hands-in-progress.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/img/homemade-hands-in-progress.jpeg -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/img/store-bought-clock-hands.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/img/store-bought-clock-hands.gif -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/readme.md -------------------------------------------------------------------------------- /Making_Custom_Clock_Hands/shaft_templates_VID28_Clockit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Making_Custom_Clock_Hands/shaft_templates_VID28_Clockit.svg -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/.DS_Store -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/CompileTimeSet/CompileTimeSet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/CompileTimeSet/CompileTimeSet.ino -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/EncoderTimeSet/EncoderTimeSet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/EncoderTimeSet/EncoderTimeSet.ino -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/EncoderTimeSetWithOLEDDisplay/EncoderTimeSetWithOLEDDisplay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/EncoderTimeSetWithOLEDDisplay/EncoderTimeSetWithOLEDDisplay.ino -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/PushbuttonTimeSet/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/PushbuttonTimeSet/.DS_Store -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/PushbuttonTimeSet/PushbuttonTimeSet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/PushbuttonTimeSet/PushbuttonTimeSet.ino -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/RTCInterval/RTCInterval.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/RTCInterval/RTCInterval.ino -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/RTCIntervalAlternate/RTCIntervalAlternate.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/RTCIntervalAlternate/RTCIntervalAlternate.ino -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/StringDateSet/StringDateSet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/StringDateSet/StringDateSet.ino -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/StringTimeSet/StringTimeSet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/StringTimeSet/StringTimeSet.ino -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/StringTimeSetNoRTC/StringTimeSetNoRTC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/StringTimeSetNoRTC/StringTimeSetNoRTC.ino -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/Timezones_DaylightSavings/Timezones_DaylightSavings.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/Timezones_DaylightSavings/Timezones_DaylightSavings.ino -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/WiFiTimeSet/WiFiTimeSet.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/WiFiTimeSet/WiFiTimeSet.ino -------------------------------------------------------------------------------- /Microcontroller_Time_Setting_Methods/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Microcontroller_Time_Setting_Methods/readme.md -------------------------------------------------------------------------------- /P5JS_examples/SunMoonClock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/SunMoonClock/index.html -------------------------------------------------------------------------------- /P5JS_examples/SunMoonClock/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/SunMoonClock/libraries/p5.dom.js -------------------------------------------------------------------------------- /P5JS_examples/SunMoonClock/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/SunMoonClock/libraries/p5.js -------------------------------------------------------------------------------- /P5JS_examples/SunMoonClock/libraries/suncalc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/SunMoonClock/libraries/suncalc.js -------------------------------------------------------------------------------- /P5JS_examples/SunMoonClock/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/SunMoonClock/sketch.js -------------------------------------------------------------------------------- /P5JS_examples/clock001/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clock001/index.html -------------------------------------------------------------------------------- /P5JS_examples/clock001/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clock001/sketch.js -------------------------------------------------------------------------------- /P5JS_examples/clock002/EncoderClockSetter/EncoderClockSetter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clock002/EncoderClockSetter/EncoderClockSetter.ino -------------------------------------------------------------------------------- /P5JS_examples/clock002/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clock002/index.html -------------------------------------------------------------------------------- /P5JS_examples/clock002/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clock002/sketch.js -------------------------------------------------------------------------------- /P5JS_examples/clock003/EncoderKeyboardClockSetter/EncoderKeyboardClockSetter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clock003/EncoderKeyboardClockSetter/EncoderKeyboardClockSetter.ino -------------------------------------------------------------------------------- /P5JS_examples/clock003/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clock003/index.html -------------------------------------------------------------------------------- /P5JS_examples/clock003/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clock003/sketch.js -------------------------------------------------------------------------------- /P5JS_examples/clockAnimationTest/assets/clockTemplate copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clockAnimationTest/assets/clockTemplate copy.svg -------------------------------------------------------------------------------- /P5JS_examples/clockAnimationTest/assets/clockTemplate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clockAnimationTest/assets/clockTemplate.svg -------------------------------------------------------------------------------- /P5JS_examples/clockAnimationTest/assets/clockTemplate_thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clockAnimationTest/assets/clockTemplate_thin.svg -------------------------------------------------------------------------------- /P5JS_examples/clockAnimationTest/assets/faceLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clockAnimationTest/assets/faceLayer.png -------------------------------------------------------------------------------- /P5JS_examples/clockAnimationTest/assets/hourLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clockAnimationTest/assets/hourLayer.png -------------------------------------------------------------------------------- /P5JS_examples/clockAnimationTest/assets/minuteLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clockAnimationTest/assets/minuteLayer.png -------------------------------------------------------------------------------- /P5JS_examples/clockAnimationTest/assets/secondLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clockAnimationTest/assets/secondLayer.png -------------------------------------------------------------------------------- /P5JS_examples/clockAnimationTest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clockAnimationTest/index.html -------------------------------------------------------------------------------- /P5JS_examples/clockAnimationTest/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clockAnimationTest/libraries/p5.dom.js -------------------------------------------------------------------------------- /P5JS_examples/clockAnimationTest/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clockAnimationTest/libraries/p5.js -------------------------------------------------------------------------------- /P5JS_examples/clockAnimationTest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clockAnimationTest/readme.md -------------------------------------------------------------------------------- /P5JS_examples/clockAnimationTest/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/clockAnimationTest/sketch.js -------------------------------------------------------------------------------- /P5JS_examples/colorClock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/colorClock/index.html -------------------------------------------------------------------------------- /P5JS_examples/colorClock/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/colorClock/libraries/p5.js -------------------------------------------------------------------------------- /P5JS_examples/colorClock/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/colorClock/sketch.js -------------------------------------------------------------------------------- /P5JS_examples/decimalClock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/decimalClock/index.html -------------------------------------------------------------------------------- /P5JS_examples/decimalClock/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/decimalClock/libraries/p5.dom.js -------------------------------------------------------------------------------- /P5JS_examples/decimalClock/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/decimalClock/libraries/p5.js -------------------------------------------------------------------------------- /P5JS_examples/decimalClock/libraries/p5.serialport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/decimalClock/libraries/p5.serialport.js -------------------------------------------------------------------------------- /P5JS_examples/decimalClock/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/decimalClock/libraries/p5.sound.js -------------------------------------------------------------------------------- /P5JS_examples/decimalClock/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/decimalClock/sketch.js -------------------------------------------------------------------------------- /P5JS_examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/readme.md -------------------------------------------------------------------------------- /P5JS_examples/spirals/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/spirals/index.html -------------------------------------------------------------------------------- /P5JS_examples/spirals/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/spirals/libraries/p5.dom.js -------------------------------------------------------------------------------- /P5JS_examples/spirals/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/spirals/libraries/p5.js -------------------------------------------------------------------------------- /P5JS_examples/spirals/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/spirals/libraries/p5.sound.js -------------------------------------------------------------------------------- /P5JS_examples/spirals/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/spirals/sketch.js -------------------------------------------------------------------------------- /P5JS_examples/tidalclock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/tidalclock/index.html -------------------------------------------------------------------------------- /P5JS_examples/tidalclock/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/tidalclock/libraries/p5.dom.js -------------------------------------------------------------------------------- /P5JS_examples/tidalclock/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/tidalclock/libraries/p5.js -------------------------------------------------------------------------------- /P5JS_examples/tidalclock/libraries/p5.serialport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/tidalclock/libraries/p5.serialport.js -------------------------------------------------------------------------------- /P5JS_examples/tidalclock/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/tidalclock/libraries/p5.sound.js -------------------------------------------------------------------------------- /P5JS_examples/tidalclock/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/P5JS_examples/tidalclock/sketch.js -------------------------------------------------------------------------------- /Programmable_LED_examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Programmable_LED_examples/.DS_Store -------------------------------------------------------------------------------- /Programmable_LED_examples/APA102_clocl/APA102RoundClockNetwork/APA102RoundClockNetwork.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Programmable_LED_examples/APA102_clocl/APA102RoundClockNetwork/APA102RoundClockNetwork.ino -------------------------------------------------------------------------------- /Programmable_LED_examples/NeoPixelClock/NeoPixelClock001/NeoPixelClock001.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Programmable_LED_examples/NeoPixelClock/NeoPixelClock001/NeoPixelClock001.ino -------------------------------------------------------------------------------- /Programmable_LED_examples/NeoPixelClock/NeoPixelRoundClock/NeoPixelRoundClock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Programmable_LED_examples/NeoPixelClock/NeoPixelRoundClock/NeoPixelRoundClock.ino -------------------------------------------------------------------------------- /Programmable_LED_examples/NeoPixelClock/NeoPixelRoundClockNetwork/NeoPixelRoundClockNetwork.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Programmable_LED_examples/NeoPixelClock/NeoPixelRoundClockNetwork/NeoPixelRoundClockNetwork.ino -------------------------------------------------------------------------------- /Programmable_LED_examples/programmable_LED_clocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Programmable_LED_examples/programmable_LED_clocks.md -------------------------------------------------------------------------------- /Programmable_LED_examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/Programmable_LED_examples/readme.md -------------------------------------------------------------------------------- /RTC_Clock_Examples/RTCClockAvagoDisplay/RTCClockAvagoDisplay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/RTCClockAvagoDisplay/RTCClockAvagoDisplay.ino -------------------------------------------------------------------------------- /RTC_Clock_Examples/RTCClockEmic2Display/RTCClockEmic2Display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/RTCClockEmic2Display/RTCClockEmic2Display.ino -------------------------------------------------------------------------------- /RTC_Clock_Examples/RTCClockEpaperDisplay/RTCClockEpaperDisplay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/RTCClockEpaperDisplay/RTCClockEpaperDisplay.ino -------------------------------------------------------------------------------- /RTC_Clock_Examples/RTCClockSSD1306Display/RTCClockSSD1306Display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/RTCClockSSD1306Display/RTCClockSSD1306Display.ino -------------------------------------------------------------------------------- /RTC_Clock_Examples/RTCClockSerialDisplay/RTCClockSerialDisplay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/RTCClockSerialDisplay/RTCClockSerialDisplay.ino -------------------------------------------------------------------------------- /RTC_Clock_Examples/RTCRoundTFTDisplayAnalogClock/RTCRoundTFTDisplayAnalogClock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/RTCRoundTFTDisplayAnalogClock/RTCRoundTFTDisplayAnalogClock.ino -------------------------------------------------------------------------------- /RTC_Clock_Examples/RTCRoundTFTDisplayDecimalClock/RTCRoundTFTDisplayDecimalClock.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/RTCRoundTFTDisplayDecimalClock/RTCRoundTFTDisplayDecimalClock.ino -------------------------------------------------------------------------------- /RTC_Clock_Examples/RTC_EInk_QRCode/RTC_EInk_QRCode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/RTC_EInk_QRCode/RTC_EInk_QRCode.ino -------------------------------------------------------------------------------- /RTC_Clock_Examples/RTC_EInk_Text/RTC_EInk_Text.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/RTC_EInk_Text/RTC_EInk_Text.ino -------------------------------------------------------------------------------- /RTC_Clock_Examples/WiFiTimeDriftCheck/WiFiTimeDriftCheck.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/WiFiTimeDriftCheck/WiFiTimeDriftCheck.ino -------------------------------------------------------------------------------- /RTC_Clock_Examples/WiFiTimeDriftCheck/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/WiFiTimeDriftCheck/arduino_secrets.h -------------------------------------------------------------------------------- /RTC_Clock_Examples/WiFiTimeDriftCheckSD/WiFiTimeDriftCheckSD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/WiFiTimeDriftCheckSD/WiFiTimeDriftCheckSD.ino -------------------------------------------------------------------------------- /RTC_Clock_Examples/WiFiTimeDriftCheckSD/arduino_secrets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/WiFiTimeDriftCheckSD/arduino_secrets.h -------------------------------------------------------------------------------- /RTC_Clock_Examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RTC_Clock_Examples/readme.md -------------------------------------------------------------------------------- /RoundDisplays/ST76975_round_display/ST76975_round_display.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/RoundDisplays/ST76975_round_display/ST76975_round_display.ino -------------------------------------------------------------------------------- /VID28-05_mechanism/DiscreteMinuteSecondHandTest/DiscreteMinuteSecondHandTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/VID28-05_mechanism/DiscreteMinuteSecondHandTest/DiscreteMinuteSecondHandTest.ino -------------------------------------------------------------------------------- /VID28-05_mechanism/DiscreteMinuteSecondHandTest002/DiscreteMinuteSecondHandTest002.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/VID28-05_mechanism/DiscreteMinuteSecondHandTest002/DiscreteMinuteSecondHandTest002.ino -------------------------------------------------------------------------------- /VID28-05_mechanism/DiscreteMinuteSecondHandTest003/DiscreteMinuteSecondHandTest003.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/VID28-05_mechanism/DiscreteMinuteSecondHandTest003/DiscreteMinuteSecondHandTest003.ino -------------------------------------------------------------------------------- /VID28-05_mechanism/SweepMinuteSecondHandTest/SweepMinuteSecondHandTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/VID28-05_mechanism/SweepMinuteSecondHandTest/SweepMinuteSecondHandTest.ino -------------------------------------------------------------------------------- /VID28-05_mechanism/TwoMotorTest/TwoMotorTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/VID28-05_mechanism/TwoMotorTest/TwoMotorTest.ino -------------------------------------------------------------------------------- /VID28-05_mechanism/VID28-05_hands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/VID28-05_mechanism/VID28-05_hands.svg -------------------------------------------------------------------------------- /VID28-05_mechanism/VID28-05_hands.vwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/VID28-05_mechanism/VID28-05_hands.vwx -------------------------------------------------------------------------------- /VID28-05_mechanism/VID28_board_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/VID28-05_mechanism/VID28_board_0001.png -------------------------------------------------------------------------------- /VID28-05_mechanism/VID28_eagle_01/VID28_board_0001.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/VID28-05_mechanism/VID28_eagle_01/VID28_board_0001.brd -------------------------------------------------------------------------------- /VID28-05_mechanism/VID28_eagle_01/VID28_board_0001.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/VID28-05_mechanism/VID28_eagle_01/VID28_board_0001.sch -------------------------------------------------------------------------------- /VID28-05_mechanism/VW Backup/VID28-05_footprint-Backup-20180524060535.vwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/VID28-05_mechanism/VW Backup/VID28-05_footprint-Backup-20180524060535.vwx -------------------------------------------------------------------------------- /VID28-05_mechanism/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/VID28-05_mechanism/readme.md -------------------------------------------------------------------------------- /WhatNotToDoClock/WhatNotToDoClock001/WhatNotToDoClock001.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/WhatNotToDoClock/WhatNotToDoClock001/WhatNotToDoClock001.ino -------------------------------------------------------------------------------- /WhatNotToDoClock/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/WhatNotToDoClock/readme.md -------------------------------------------------------------------------------- /WhatNotToDoClock/what-not-to-do-clock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/WhatNotToDoClock/what-not-to-do-clock.jpg -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/_includes/nav.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/wifi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/_layouts/wifi.md -------------------------------------------------------------------------------- /bibliography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/bibliography.md -------------------------------------------------------------------------------- /can_clocks/clock-kit-shafts_short 2.vwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/can_clocks/clock-kit-shafts_short 2.vwx -------------------------------------------------------------------------------- /can_clocks/clock-kit-shafts_thin.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/can_clocks/clock-kit-shafts_thin.eps -------------------------------------------------------------------------------- /can_clocks/clock-kit-shafts_thin.vwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/can_clocks/clock-kit-shafts_thin.vwx -------------------------------------------------------------------------------- /can_clocks/hourHandInside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/can_clocks/hourHandInside.svg -------------------------------------------------------------------------------- /can_clocks/hourHandOutside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/can_clocks/hourHandOutside.svg -------------------------------------------------------------------------------- /can_clocks/minuteHandInside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/can_clocks/minuteHandInside.svg -------------------------------------------------------------------------------- /can_clocks/minuteHandOutside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/can_clocks/minuteHandOutside.svg -------------------------------------------------------------------------------- /can_clocks/secondHandIntside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/can_clocks/secondHandIntside.svg -------------------------------------------------------------------------------- /can_clocks/secondHandOutside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/can_clocks/secondHandOutside.svg -------------------------------------------------------------------------------- /moire_kinetic_clock/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/moire_kinetic_clock/.DS_Store -------------------------------------------------------------------------------- /moire_kinetic_clock/ver_001/moire_square.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/moire_kinetic_clock/ver_001/moire_square.ai -------------------------------------------------------------------------------- /moire_kinetic_clock/ver_001/moire_square.vwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/moire_kinetic_clock/ver_001/moire_square.vwx -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/notes.md -------------------------------------------------------------------------------- /organizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/organizations.md -------------------------------------------------------------------------------- /parts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/parts.md -------------------------------------------------------------------------------- /projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/projects.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/readme.md -------------------------------------------------------------------------------- /timestamps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/timestamps.md -------------------------------------------------------------------------------- /tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/tools.md -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/.DS_Store -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/Assembly instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/Assembly instructions.txt -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/Bill of Materials.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/Bill of Materials.xlsx -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/img/bottom_plate_assembly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/img/bottom_plate_assembly.jpg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/img/fully_assembled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/img/fully_assembled.jpg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/img/top_and_bottom_assemblies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/img/top_and_bottom_assemblies.jpg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/motor_clipA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/motor_clipA.svg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/motor_clipB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/motor_clipB.svg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/mounting_plates_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/mounting_plates_bot.svg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/mounting_plates_mid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/mounting_plates_mid.svg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/mounting_plates_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/mounting_plates_top.svg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/readme.md -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/stepper_mount_sketch.vwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/stepper_mount_sketch.vwx -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/.DS_Store -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/ClockPiece.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/ClockPiece.txt -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/bill_of_materials.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/bill_of_materials.md.txt -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/Bill of Materials.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/Bill of Materials.xlsx -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/breadboard_baseplate_002C.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/breadboard_baseplate_002C.ai -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/motor_clipA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/motor_clipA.svg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/motor_clipB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/motor_clipB.svg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/mounting_plates_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/mounting_plates_bot.svg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/mounting_plates_mid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/mounting_plates_mid.svg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/mounting_plates_top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/mounting_plates_top.svg -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/readme.txt -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/stepper_motor_mount_002.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/stepper_motor_mount_002.ai -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/stepper_motor_mount_002B.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/stepper_motor_mount_002B.ai -------------------------------------------------------------------------------- /two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/stepper_mount_sketch.vwx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/two_stepper_clock_mechanism/version_one_archived/two_arm_laser_files/stepper_mount_sketch.vwx -------------------------------------------------------------------------------- /works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITPNYU/clock-club/HEAD/works.md --------------------------------------------------------------------------------