Skip to content

Enhance dance choreography and add floating hearts#224

Open
Shiyx27 wants to merge 1 commit into
codedex-io:mainfrom
Shiyx27:patch-2
Open

Enhance dance choreography and add floating hearts#224
Shiyx27 wants to merge 1 commit into
codedex-io:mainfrom
Shiyx27:patch-2

Conversation

@Shiyx27

@Shiyx27 Shiyx27 commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

Updated text to include floating hearts and improved dance choreography explanation.

Closes #issue

  • My project tutorial topic has already been approved by the Codédex team.
  • My project tutorial file renders properly in mdx.
  • My .mdx file follows the project template, as well as what's recommended in the content guidelines.
  • The content written is my own, and not plagiarized from other sources.
  • All code written is thoroughly functional and commented (or documented).
  • I have already completed a self-review of the project tutorial.
  • I will comply with changes made or recommended by the Codédex team about my project tutorial.

Updated text to include floating hearts and improved dance choreography explanation.
Copilot AI review requested due to automatic review settings July 9, 2026 18:16

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the “Build a Pocket Rave with Arduino” tutorial to add a short explanation for floating heart particle effects and to expand the dance choreography/lyrics (“teleprompter”) sections.

Changes:

  • Adds a new section describing floating heart particle effects with a small bitmap animation snippet.
  • Expands the dance choreography section with additional explanatory text and placeholders for visuals.
  • Adds a new “Digital Teleprompter” section with an if / else if lyrics example.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

int heart1_Y = 64 - ((timeNow / 40) % 70);
display.drawBitmap(120, heart1_Y, heart_bmp, 5, 5, SSD1306_WHITE);
```
GIF OF FLOATING HEARTS IN OLED GOES HERE
display.drawCircle();
display.drawLine();
```
GIF OF STICK MAN DANCING w HEARTS GOES HERE
int danceBeat = (timeNow / 230) % 2;
int guyY = 25 + (danceBeat == 1 ? -4 : 0);
```
```
Comment on lines +174 to +177
### 6. The Digital Teleprompter :
Now for the final piece....drumrollls...the lyrics! This is where you get to customize the code to match your own favorite song.

We use an `if / else if` statement like a movie script. The Arduino checks our millis() stopwatch to see what "phase" of the song we are in, and prints the correct lyrics to the screen!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants