π A comprehensive vocabulary learning application for Pebble smartwatches with advanced features like phonetic pronunciation, example sentences, etymology, and progress tracking.
- Definition Display - Traditional meaning of the word
- Example Sentences - See words used in context
- Etymology - Learn the origin and history of words
- Phonetic Pronunciation - Learn how to pronounce each word
- Track words learned (auto-advances every 10 minutes)
- Count total words reviewed (manual navigation)
- Streak tracking for consistency
- Real-time statistics on your wrist
- 20+ Pre-loaded Words with difficulty levels (Beginner/Intermediate/Advanced)
- Multiple Categories (General, Academic)
- Color-coded difficulty indicators
- Dynamic category and difficulty display
- Live Clock Display showing current time
- Auto-advance Timer - New vocabulary every 10 minutes with vibration alert
- Interactive Button Controls for seamless navigation
- Responsive Interface with color-coded information layers
- Multiple Vibration Patterns for different events
- Black background with vibrant cyan clock
- Color-coded layers:
- Cyan: Clock and time info
- Chrome Yellow: Title
- Vivid Cerulean: Vocabulary terms
- Spring Bud: Definitions and information
- Malachite Green: Statistics
- Red: Countdown timer
- Orange: Instructions
| Button | Action |
|---|---|
| UP | Next vocabulary word |
| DOWN | Previous vocabulary word |
| SELECT (Middle) | Reveal information / Cycle through modes |
Information Cycle: Definition β Example β Etymology β Phonetic Pronunciation
- Pebble SDK 3
- Python 2.7
- NodeJS (optional, for companion app)
# Clone the repository
git clone https://github.com/yourusername/vocab-learner.git
cd vocab-learner
# Install dependencies
pebble doctor
# Build the app
pebble build
# Install on emulator or device
pebble install --phone <phone-ip>The app includes 20 carefully selected words covering:
- Beginner Level: Zenith, Nostalgic, Jubilant
- Intermediate Level: Eloquent, Serendipity, Pragmatic, Meticulous, Ambiguous, Petulant, Resilient, Fastidious, Gregarious, Hiatus, Incisive, Paradigm
- Advanced Level: Ephemeral, Ubiquitous, Mellifluous, Obfuscate
Each word includes:
- Term - The vocabulary word
- Meaning - Clear definition
- Example - Sentence demonstrating usage
- Etymology - Word origin and history
- Phonetic - Pronunciation guide
Edit src/c/vocab.h:
{"NewWord", "Definition here", "Example sentence here", "Etymology here", "Pronunciation", 2, "Category"}Then rebuild:
pebble buildIn src/c/pebble_vocab_learner.c, change the s_time_remaining value:
static int s_time_remaining = 600; // 600 seconds = 10 minutesvocab-learner/
βββ src/c/
β βββ pebble_vocab_learner.c # Main application
β βββ vocab.h # Vocabulary database
βββ wscript # Build configuration
βββ package.json # Project metadata
βββ README.md # This file
βββ .gitignore # Git ignore rules
- β Pebble Time (Basalt)
- β Pebble Time Steel (Basalt)
- β Pebble Time Round (Chalk)
- β Pebble Original (Aplite)
- β Pebble Steel (Diorite)
- β Pebble 2 (Emery)
- Memory Usage: ~2.4KB RAM footprint
- App Size: ~4KB resources
- Battery Impact: Minimal (updates only on button press or minute change)
pebble build # Build for all platforms
pebble build --phone # Build for phone emulatorpebble install --phone <ip-address>
pebble logs # View app logspebble build -v # Verbose build output
pebble logs | grep vocab # Filter logs- Difficulty selection on app launch
- Quiz mode with multiple choice answers
- Achievement badges and milestones
- Sync learned words with companion phone app
- Custom vocabulary import via BLE
- Spaced repetition algorithm
- Voice guidance (via companion app)
- Dark mode option
- Export statistics to CSV
Contributions are welcome! Here's how to contribute:
- Fork the repository
- Create a feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
Created as a learning tool for Pebble smartwatch development.
- Pebble SDK Documentation
- Vocabulary from GRE/SAT prep materials
- Community feedback and testing
For issues, questions, or suggestions:
- Open an Issue
- Create a Discussion
Q: Can I add more vocabulary words?
A: Yes! Edit src/c/vocab.h and add entries to the vocab_list array.
Q: Can I change the timer interval?
A: Yes! Modify s_time_remaining = 600; in pebble_vocab_learner.c to your desired seconds.
Q: Will this work on my Pebble model? A: Yes! The app is tested and compiled for all Pebble models.
Q: How do I update the app on my watch?
A: Use pebble install --phone <phone-ip> to push updates.
Happy Learning! πβ¨