├── .gitignore ├── LICENCE ├── Makefile ├── README.md ├── docs ├── DHT22-AM2302-Digital-Temperature-Humidity-Sensor-2.jpg ├── DIY_LED_Clock.png ├── DIY_LED_Clock_STC15F204EA.pdf ├── DIY_LED_Clock_STC15W408AS.pdf ├── DIY_LED_Clock_manual_STC15W408AS.pdf ├── DIY_LED_Clock_operation_original.png ├── NY3P(B)_v1.2.pdf ├── Temp.ods ├── board.jpg ├── d1-mini-esp8266.jpg └── sch.jpg ├── esp └── init.lua ├── main.hex ├── photos ├── 20190115_134638.jpg ├── 20190115_134638c.jpg ├── 20190115_134701.jpg ├── 20190115_134737.jpg ├── 20190115_134741.jpg ├── 20190115_140711.jpg ├── 20190115_140723.jpg ├── 20190115_140835.jpg ├── 20190115_140848.jpg ├── 20190115_140901.jpg ├── 20190115_140906.jpg ├── NodeMCU-custom-builds.png ├── connections.jpg ├── connections.svg └── webpage.jpg └── src ├── adc.c ├── adc.h ├── ds1302.c ├── ds1302.h ├── hwconfig.h ├── led.h ├── main.c ├── serial.h ├── stc15.h └── sys.h /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/LICENCE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/README.md -------------------------------------------------------------------------------- /docs/DHT22-AM2302-Digital-Temperature-Humidity-Sensor-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/docs/DHT22-AM2302-Digital-Temperature-Humidity-Sensor-2.jpg -------------------------------------------------------------------------------- /docs/DIY_LED_Clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/docs/DIY_LED_Clock.png -------------------------------------------------------------------------------- /docs/DIY_LED_Clock_STC15F204EA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/docs/DIY_LED_Clock_STC15F204EA.pdf -------------------------------------------------------------------------------- /docs/DIY_LED_Clock_STC15W408AS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/docs/DIY_LED_Clock_STC15W408AS.pdf -------------------------------------------------------------------------------- /docs/DIY_LED_Clock_manual_STC15W408AS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/docs/DIY_LED_Clock_manual_STC15W408AS.pdf -------------------------------------------------------------------------------- /docs/DIY_LED_Clock_operation_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/docs/DIY_LED_Clock_operation_original.png -------------------------------------------------------------------------------- /docs/NY3P(B)_v1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/docs/NY3P(B)_v1.2.pdf -------------------------------------------------------------------------------- /docs/Temp.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/docs/Temp.ods -------------------------------------------------------------------------------- /docs/board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/docs/board.jpg -------------------------------------------------------------------------------- /docs/d1-mini-esp8266.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/docs/d1-mini-esp8266.jpg -------------------------------------------------------------------------------- /docs/sch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/docs/sch.jpg -------------------------------------------------------------------------------- /esp/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/esp/init.lua -------------------------------------------------------------------------------- /main.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/main.hex -------------------------------------------------------------------------------- /photos/20190115_134638.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/20190115_134638.jpg -------------------------------------------------------------------------------- /photos/20190115_134638c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/20190115_134638c.jpg -------------------------------------------------------------------------------- /photos/20190115_134701.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/20190115_134701.jpg -------------------------------------------------------------------------------- /photos/20190115_134737.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/20190115_134737.jpg -------------------------------------------------------------------------------- /photos/20190115_134741.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/20190115_134741.jpg -------------------------------------------------------------------------------- /photos/20190115_140711.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/20190115_140711.jpg -------------------------------------------------------------------------------- /photos/20190115_140723.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/20190115_140723.jpg -------------------------------------------------------------------------------- /photos/20190115_140835.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/20190115_140835.jpg -------------------------------------------------------------------------------- /photos/20190115_140848.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/20190115_140848.jpg -------------------------------------------------------------------------------- /photos/20190115_140901.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/20190115_140901.jpg -------------------------------------------------------------------------------- /photos/20190115_140906.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/20190115_140906.jpg -------------------------------------------------------------------------------- /photos/NodeMCU-custom-builds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/NodeMCU-custom-builds.png -------------------------------------------------------------------------------- /photos/connections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/connections.jpg -------------------------------------------------------------------------------- /photos/connections.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/connections.svg -------------------------------------------------------------------------------- /photos/webpage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/photos/webpage.jpg -------------------------------------------------------------------------------- /src/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/src/adc.c -------------------------------------------------------------------------------- /src/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/src/adc.h -------------------------------------------------------------------------------- /src/ds1302.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/src/ds1302.c -------------------------------------------------------------------------------- /src/ds1302.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/src/ds1302.h -------------------------------------------------------------------------------- /src/hwconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/src/hwconfig.h -------------------------------------------------------------------------------- /src/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/src/led.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/src/main.c -------------------------------------------------------------------------------- /src/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/src/serial.h -------------------------------------------------------------------------------- /src/stc15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/src/stc15.h -------------------------------------------------------------------------------- /src/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onivan/stc_diyclock-ntp/HEAD/src/sys.h --------------------------------------------------------------------------------