This page has some ideas and plans for the future, that were not implemented yet, and the planned processes on how this repository should be organized.
- Short description
- Summary of new components used/new techniques
- BOM - bill of materials
- Circuit diagram
- Recap
- [Optional] Extra credit: List of extensions to the project
The structure of Arduino sketches is similar:
setup
functionloop
function
We also need to configure a few constants
I use the following section comments at the beginning of a section
// *** SECTION NAME ***
For simple programs, the configuration is in the main file (*.ino
) under the Configuration section. For bigger projects, the configuration is in a separate file (Configuration.h
) te keep things nice and simple, and for easier reconfiguration.
These are not to me, with future plans
- Week 2: playing a tune with the buzzer
- Week 3: building the hi-tech office nagger
- Adjust pitch and interval with the knob:
- Use the switch on the knob to move between pitch and interval adjustments
- Adjust pitch and interval with the knob:
- Week 4: music memory game with switches
- Week 5: Using the screen: draw the pitch/interval on the screen
- Clock + temperature display with RTC component
- Perfect hour timer Set the length of the perfect hour, start the timer, bzzz when the time is up
- Building a flip-flop (don't have transistors)