Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed a bug in arduino code #14

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Conversation

CIumsy
Copy link
Contributor

@CIumsy CIumsy commented Jan 31, 2025

Summary by CodeRabbit

  • New Features
    • Introduced new filtering mechanisms for EMG signals with distinct BandStopFilter and HighPassFilter functions.
  • Refactor
    • Improved code organization and readability for EMG envelope data output handling.
    • Restructured conditional compilation logic for calibration and advanced modes.
    • Enhanced code formatting and added a newline at the end of the file.

Copy link

coderabbitai bot commented Jan 31, 2025

Walkthrough

The pull request modifies the EMG game controller Arduino code, focusing on restructuring the conditional compilation logic for handling EMG envelope data output. The changes primarily involve reorganizing the #ifdef Calibrate and #ifdef Advanced blocks to improve code readability and structure. Additionally, it introduces new filtering mechanisms for EMG signals by replacing a single filter function with two distinct filters. The underlying functionality remains unchanged, with the modifications aimed at enhancing code organization and adherence to coding standards.

Changes

File Change Summary
12_2CH_EMG_Game_Controller/12_2CH_EMG_Game_Controller.ino Restructured conditional compilation blocks for EMG envelope data output, improved code organization, and added a newline at file end.
02_EMG_Filter/02_EMG_Filter.ino Replaced single EMG filter function with BandStopFilter and HighPassFilter, updated sampling logic, and modified filter implementations with new coefficients and comments. Removed EMGFilter function.

Possibly related PRs

  • Added readme file and made some changes to the code #12: The changes in the main PR focus on restructuring conditional compilation logic for EMG envelope data output, while the retrieved PR modifies specific output values based on EMG envelope comparisons, indicating a direct relationship in their handling of EMG signal processing logic.

Poem

🐰 In the realm of code, where logic takes flight,
Conditional blocks now dance with delight.
EMG signals, once tangled and wild,
Now structured and clear, no longer riled.
A rabbit's refactor, clean and bright! 🎮


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 50330d4 and 3831efa.

📒 Files selected for processing (1)
  • 02_EMG_Filter/02_EMG_Filter.ino (1 hunks)
🔇 Additional comments (5)
02_EMG_Filter/02_EMG_Filter.ino (5)

37-40: LGTM - Improved code formatting.

The setup function now has consistent bracing style and proper indentation, which improves readability while maintaining the same functionality.


43-71: Good refactoring to a two-stage filtering approach.

The loop function has been restructured to implement a sequential filtering approach:

  1. First applying a band-stop filter to remove power line noise (48-52 Hz)
  2. Then applying a high-pass filter to eliminate frequencies below 70 Hz

This modular approach improves code organization and likely provides better signal processing results than the previous single filter implementation.


74-89: Well-documented high-pass filter implementation.

The new high-pass filter function is clearly documented with sampling rate and cutoff frequency information. The Butterworth implementation as a second-order section is appropriate for this application.

However, as noted in a previous review, consider using more descriptive names for the state variables.

- static float z1, z2; // filter section state
+ static float hp_z1, hp_z2; // high-pass filter section state

Adjust the rest of the function to use these renamed variables accordingly.


91-113: 🛠️ Refactor suggestion

Well-structured band-stop filter with cascaded biquads.

The band-stop filter is properly implemented as two cascaded second-order sections, which is ideal for removing the targeted 48-52 Hz power line interference.

However, using the same variable names (z1, z2) in multiple filter sections makes the code harder to understand and debug. This is particularly important in this function since it has multiple stages.

  {
-   static float z1, z2; // filter section state
+   static float bs_z1_stage1, bs_z2_stage1; // band-stop filter first stage state
    float x = output - -1.56858163 * z1 - 0.96424138 * z2;
    output = 0.96508099 * x + -1.56202714 * z1 + 0.96508099 * z2;
-   z2 = z1;
-   z1 = x;
+   bs_z2_stage1 = bs_z1_stage1;
+   bs_z1_stage1 = x;
  }
  {
-   static float z1, z2; // filter section state
+   static float bs_z1_stage2, bs_z2_stage2; // band-stop filter second stage state
    float x = output - -1.61100358 * z1 - 0.96592171 * z2;
    output = 1.00000000 * x + -1.61854514 * z1 + 1.00000000 * z2;
-   z2 = z1;
-   z1 = x;
+   bs_z2_stage2 = bs_z1_stage2;
+   bs_z1_stage2 = x;
  }

This change would make the code more maintainable and easier to debug.


64-70: Overall filtering approach looks correct.

The sequential application of the band-stop filter followed by the high-pass filter is a good approach for EMG signal processing:

  1. The band-stop filter removes 50Hz power line interference
  2. The high-pass filter at 70Hz removes motion artifacts and baseline drift

This implementation should provide a cleaner EMG signal for further processing.

✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (1)
12_2CH_EMG_Game_Controller/12_2CH_EMG_Game_Controller.ino (1)

182-184: Fix indentation and use consistent operators in the remaining conditions.

The indentation is inconsistent, and the logical operators should be standardized.

Apply this diff:

-        else if(envelope1 > 20 and envelope1 < threshold1 and envelope2 < threshold2 and envelope2 > 10)
+        else if(envelope1 > CH_MID_THRESHOLD && envelope1 < threshold1 && 
+                envelope2 < threshold2 && envelope2 > CH_LOW_THRESHOLD)
         { 
-          Serial.println("3");
+            Serial.println("3");
         }
         else
         { 
-          Serial.println("0");
+            Serial.println("0");
         }

Also applies to: 187-189

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between b6ef086 and 2ef87e8.

📒 Files selected for processing (1)
  • 12_2CH_EMG_Game_Controller/12_2CH_EMG_Game_Controller.ino (2 hunks)
🔇 Additional comments (2)
12_2CH_EMG_Game_Controller/12_2CH_EMG_Game_Controller.ino (2)

310-310: LGTM!

The closing brace is correctly placed.


153-209: Verify if the original bug is fixed.

The PR title mentions a bug fix, but the changes appear to be mostly restructuring. Please clarify:

  1. What was the original bug?
  2. How do these changes fix it?

Also, consider adding test cases to verify the fix and prevent regression.

Would you like me to help create test cases to validate the changes?

Comment on lines +160 to +169
if(envelope1 > envelope2 and envelope1 > threshold1 and envelope2 < 20)
{
if(envelope2>10)
{
Serial.println("4");
}
else
{
Serial.println("1");
}
Copy link

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Use consistent comparison operators and define magic numbers as constants.

  1. Replace 'and' with '&&' for consistency with C++ style
  2. Define threshold values as constants instead of using magic numbers
  3. Add missing check for CH2 activation (asymmetric with CH1)

Apply this diff to fix the issues:

+// Define threshold constants at the top with other constants
+#define CH_LOW_THRESHOLD 10
+#define CH_MID_THRESHOLD 20

-        if(envelope1 > envelope2 and envelope1 > threshold1 and envelope2 < 20)
+        if(envelope1 > envelope2 && envelope1 > threshold1 && envelope2 < CH_MID_THRESHOLD)
         { 
-          if(envelope2>10)
+          if(envelope2 > CH_LOW_THRESHOLD)
           {
             Serial.println("4");
           }
           else
           {
           Serial.println("1");
           }
         }
-        else if(envelope2 > envelope1 and envelope2 > threshold2)
+        else if(envelope2 > envelope1 && envelope2 > threshold2 && envelope1 < CH_MID_THRESHOLD)
         { 
-          if(envelope1>20)
+          if(envelope1 > CH_MID_THRESHOLD)

Also applies to: 171-180

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (3)
02_EMG_Filter/02_EMG_Filter.ino (3)

57-70: Consider validating filter output alongside raw data.
Currently, the new band-stop/high-pass combination is only tested by printing the final filtered signal. It may be helpful to print (or log) the raw data alongside the filtered output in a single line during development/testing, so you can quickly compare both values and ensure filter performance is as intended.


74-78: Documentation is comprehensive; add reference to filter configuration script.
This comment block thoroughly explains the filter characteristics. Consider referencing the location or filename of the script/tool you used (e.g., “filter_gen.py” in your repository) for easy traceability when updating or regenerating filter coefficients in the future.


83-83: Remove the double negative to improve readability.
While correct mathematically, the double negative can be confusing. Consider simplifying as shown in the diff below:

-    float x = output - -0.82523238*z1 - 0.29463653*z2;
+    float x = output + 0.82523238*z1 - 0.29463653*z2;
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2ef87e8 and 1782464.

📒 Files selected for processing (1)
  • 02_EMG_Filter/02_EMG_Filter.ino (1 hunks)
🔇 Additional comments (1)
02_EMG_Filter/02_EMG_Filter.ino (1)

91-96: Kudos on providing clear filter documentation.
The band-stop filter comment block is concise and mirrors the high-pass filter’s style. No issues found here.

Comment on lines 97 to 108
float output = input;
{
static float z1, z2; // filter section state
float x = output - 0.47319594*z1 - 0.70744137*z2;
output = 1.00000000*x + 2.00000000*z1 + 1.00000000*z2;
float x = output - -1.56858163*z1 - 0.96424138*z2;
output = 0.96508099*x + -1.56202714*z1 + 0.96508099*z2;
z2 = z1;
z1 = x;
}
{
static float z1, z2; // filter section state
float x = output - -1.00211112*z1 - 0.74520226*z2;
output = 1.00000000*x + -2.00000000*z1 + 1.00000000*z2;
float x = output - -1.61100358*z1 - 0.96592171*z2;
output = 1.00000000*x + -1.61854514*z1 + 1.00000000*z2;
Copy link

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Consider using distinct names for static states in each filter stage.
Repeatedly declaring z1 and z2 for multiple second-order sections within the same function can introduce confusion. Using unique identifiers (e.g., z1_stage1, z1_stage2) or grouping them in a struct can help maintain clarity.

Comment on lines 59 to 70
// Apply the band-stop filter (48 Hz to 52 Hz)
float bandstop_filtered = BandStopFilter(sensor_value);

// Apply the high-pass filter (70 Hz)
float highpass_filtered = HighPassFilter(bandstop_filtered);

// Print the final filtered signal
Serial.print(highpass_filtered);

// Uncomment below 2 lines to compare with raw data
// Serial.print(" ");
// Serial.println(sensor_value);
Copy link
Member

Choose a reason for hiding this comment

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

@CIumsy please fix indentation here.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Nitpick comments (2)
02_EMG_Filter/02_EMG_Filter.ino (2)

97-102: Consider consistent coefficient precision

While the filter coefficients are correct, you might want to standardize the number of decimal places for consistency and readability. Additionally, consider whether the high precision is necessary for your microcontroller's floating-point capabilities.

Also applies to: 104-109


57-69: Minor indentation inconsistency

There appears to be a mix of tabs and spaces in the indentation. The code in the loop() function uses spaces for indentation while other parts use tabs. Consider standardizing on either tabs or spaces throughout the codebase.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 1782464 and 50330d4.

📒 Files selected for processing (1)
  • 02_EMG_Filter/02_EMG_Filter.ino (1 hunks)
🔇 Additional comments (5)
02_EMG_Filter/02_EMG_Filter.ino (5)

57-68: Well-structured filter implementation approach

The revised EMG signal processing pipeline is now more clear and follows standard DSP practices by applying specific filters in sequence. First removing power line noise (band-stop filter) and then applying high-pass filtering makes sense for EMG processing.


61-62: Good fix for power line noise

Adding a dedicated band-stop filter targeting 48-52 Hz addresses power line noise issues (typically 50Hz in many regions), which was likely the bug being fixed. This is much more effective than trying to handle it with a single filter.


72-87: Well-documented filter implementation

The high-pass filter is well-documented with clear references to the filter generation method. The code structure is clean and the filter parameters are clearly specified.


80-85: Consider using distinct names for static states in each filter stage.

Repeatedly declaring z1 and z2 for multiple second-order sections within the same function can introduce confusion. Using unique identifiers (e.g., z1_stage1, z1_stage2) or grouping them in a struct can help maintain clarity.


89-110: Good addition of band-stop filter for noise rejection

The band-stop filter is properly implemented as two second-order sections, which provides better numerical stability than a single fourth-order filter. The frequency range (48-52 Hz) is appropriate for rejecting power line interference.

@CIumsy
Copy link
Contributor Author

CIumsy commented Mar 20, 2025

@lorforlinux Fixed the indentation in 02_EMG_Filter.ino

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