Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/techniccontroller/think_wordclock
Arduino sourcecode for my DIY Wordclock
https://github.com/techniccontroller/think_wordclock
arduino clock design led-strips neopixel rtc
Last synced: about 17 hours ago
JSON representation
Arduino sourcecode for my DIY Wordclock
- Host: GitHub
- URL: https://github.com/techniccontroller/think_wordclock
- Owner: techniccontroller
- License: mit
- Created: 2020-12-06T14:27:57.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-26T16:03:19.000Z (15 days ago)
- Last Synced: 2024-12-26T17:17:34.105Z (14 days ago)
- Topics: arduino, clock, design, led-strips, neopixel, rtc
- Language: C
- Homepage: https://techniccontroller.de/word-clock-with-arduino-and-neopixel/
- Size: 1.72 MB
- Stars: 11
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wordclock with Arduino and NeoPixel
Arduino source code for my DIY Wordclock.## Features
This project includes the following features:
- Arduino Nano as a microcontroller
- 114 NeoPixel LEDs WS2812b as Zic-Zac matrix starting from top left
- RTC module DS3231
- DCF77 receiver for German clock signal
- 7 different color modes (switched when turned off/on within 10 seconds after startup)
- light sensor to adjust the brightness of LEDs to the environment
- DCF77 signal quality measurement on every startup and display on LED matrix (see description below)## Full Tutorial
The full tutorial on how to build this Wordclock is published onhttps://techniccontroller.com/word-clock-with-arduino-and-neopixel/
## Installation
1. Download the code (ZIP) and unzip it, copy the complete unzipped folder into your sketchbock path (found in ArduinoIDE under File->Settings).
2. Start Arduino IDE and open the file `wordclock_german.ino` via **File -> Open ...**.
3. Now the libraries must be installed. To avoid complications, I recommend simply copying all folders from the `libraries` project folder into the `libraries` folder of the sketchbook path. You can also install the libraries manually via the library manager of the IDE, but the time library of PaulStoffregen is missing, you still have to copy it yourself.Your folder structure should look like this:
```
./MySketchbookLocation
│
└───libraries
│ └───Adafruit_BusIO
│ └───Adafruit_GFX_Library
│ └───Adafruit_NeoMatrix
│ └───Adafruit_NeoPixel
│ └───DCF77
| └───RTClib
| └───Time
│
└───think_wordclock
└───libraries
│ └───Adafruit_BusIO
│ └───Adafruit_GFX_Library
│ └───Adafruit_NeoMatrix
│ └───Adafruit_NeoPixel
│ └───DCF77
| └───RTClib
| └───Time
│
└───wordclock_german
│ └───wordclock_german.ino
│
└───pictures
| └───(...)
└───README.md
```4. Connect your Arduino Nano to your computer.
5. In Arduino IDE select the correct board (Arduino Nano) and serial port.
6. Compile and upload code via **Sketch -> Upload**.## Used Libraries
To use this source code, you need to install the following libraries in Arduino IDE.
I have also included the versions of the libraries I use in this repository.
In case of any problems, please use the versions I've provided.- https://github.com/adafruit/RTClib
- https://github.com/PaulStoffregen/Time
- https://github.com/thijse/Arduino-DCF77
- https://github.com/adafruit/Adafruit-GFX-Library
- https://github.com/adafruit/Adafruit_NeoPixel
- https://github.com/adafruit/Adafruit_NeoMatrix
- https://github.com/adafruit/Adafruit_BusIO## DCF77 Signal quality measurement
I added a signal measurement feature for the DCF77 receiver. The signal quality is now also displayed at each startup with the LEDs:
1. (during measurement) top left LED flashes blue,
2. (after measurement) red/green the signal quality is shown as a bar for 2 seconds (10 leds = good, 1 led = bad)https://user-images.githubusercontent.com/36072504/212412823-a1ee02de-0112-4e50-9674-2f69df8ed7c8.mp4