-
Notifications
You must be signed in to change notification settings - Fork 11
Feat spo2 #333
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
base: master
Are you sure you want to change the base?
Feat spo2 #333
Changes from all commits
5eb96c2
e3b2887
61dd110
3693bc0
2c42f17
1795177
37711db
a221ce6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| # Name, Type, SubType, Offset, Size, Flags | ||
| nvs, data, nvs, 0x9000, 0x5000, | ||
| otadata, data, ota, 0xe000, 0x2000, | ||
| app0, app, factory, 0x10000, 0x3E0000, | ||
| coredump, data, coredump, 0x3F0000, 0x10000, |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,4 +7,4 @@ paragraph= Requires dependent libraries as shown in the getting started document | |
| category=Sensors | ||
| url=https://github.com/EmotiBit/EmotiBit_FeatherWing | ||
| architectures=* | ||
| depends=EmotiBit BMI160, EmotiBit MAX30101, EmotiBit MLX90632, EmotiBit NCP5623, EmotiBit SI7013, EmotiBit XPlat Utils, EmotiBit ADS1X15, EmotiBit External EEPROM, EmotiBit EmojiLib, EmotiBit ArduinoFilters, EmotiBit SimpleFTPServer, EmotiBit KTD2026 | ||
| depends=EmotiBit BMI160, EmotiBit MAX30101, EmotiBit MLX90632, EmotiBit NCP5623, EmotiBit SI7013, EmotiBit XPlat Utils, EmotiBit ADS1X15, EmotiBit External EEPROM, EmotiBit EmojiLib, EmotiBit ArduinoFilters, EmotiBit SimpleFTPServer, EmotiBit KTD2026, EmotiBit Brainflow SpO2 Algorithm | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainVerify the availability of the EmotiBit Brainflow SpO2 Algorithm library. The dependency on "EmotiBit Brainflow SpO2 Algorithm" needs to be available in the Arduino Library Registry. According to the PR description, this requires PR #1 in the EmotiBit_Brainflow_SpO2_Algorithm repository to be merged first. 🏁 Script executed: #!/bin/bash
# Check if the library dependency is properly documented
echo "Checking for library documentation or references:"
rg -A 3 "EmotiBit.*Brainflow.*SpO2" --type-add 'doc:*.{md,txt,rst}' -t doc
# Check for any library.json or similar configuration files
echo -e "\nSearching for library configuration files:"
fd -e json -e properties | xargs grep -l "Brainflow\|SpO2" 2>/dev/null || trueLength of output: 366 🌐 Web query: 💡 Result: Short answer: No — I couldn't find a library named "EmotiBit Brainflow SpO2 Algorithm" in the Arduino Library Registry. Details and sources:
If you want, I can:
Citations:
Dependency missing: “EmotiBit Brainflow SpO2 Algorithm” is not published The library “EmotiBit Brainflow SpO2 Algorithm” referenced on line 10 of
File and location:
🤖 Prompt for AI Agents |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| Import("env") | ||
|
|
||
| def skip_bindings_cpp(env, node): | ||
| return None | ||
|
|
||
| env.AddBuildMiddleware(skip_bindings_cpp, "**/bindings.cpp") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Document the rationale for the SpO2 buffer size.
The buffer size of 64 samples appears to be arbitrary. Please add documentation explaining:
🤖 Prompt for AI Agents