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

Buzzer cli command #4006

Draft
wants to merge 18 commits into
base: dev
Choose a base branch
from

Conversation

ivanbarsukov
Copy link
Contributor

@ivanbarsukov ivanbarsukov commented Nov 17, 2024

What's new

  • Added buzzer CLI command
  • Added function for CLI sleep with interruptibility
  • Added function for parsing note frequency
  • Added function for parsing duration and converting it to ms
  • Added function for parsing float argument
  • Updated top CLI command to use these functions

Verification

  • Open Flipper cli
  • Run buzzer freq 659.26 or buzzer note e5 for playing e5 for 100 ms (default value)
  • Run buzzer freq 659.26 5s or buzzer note e5 5s for playing e5 for 5 s

Checklist (For Reviewer)

  • PR has description of feature/bug or link to Confluence/Jira task
  • Description contains actions to verify feature/bugfix
  • I've built this code, uploaded it to the device and verified feature/bugfix

@@ -525,6 +658,7 @@ void cli_commands_init(Cli* cli) {

cli_add_command(cli, "vibro", CliCommandFlagDefault, cli_command_vibro, NULL);
cli_add_command(cli, "led", CliCommandFlagDefault, cli_command_led, NULL);
cli_add_command(cli, "buzzer", CliCommandFlagDefault, cli_command_buzzer, NULL);
Copy link
Member

Choose a reason for hiding this comment

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

We kinda low on free flash memory, adding this feature directly into firmware looks kinda bad.
There is a chance that we will postpone this PR till @portasynthinca3 finish cli refactoring, so we can move non essential things into external apps.

@skotopes skotopes marked this pull request as draft December 23, 2024 03:45
@skotopes
Copy link
Member

Un-draft when ready

};

// Send notification
notification_message_block(notification, &notification_sequence);
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@skotopes Is there a way to interrupt notification by Ctrl+C? I would be grateful for examples

Copy link
Member

Choose a reason for hiding this comment

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

no

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I've added function cli_sleep for this purpose. Please take a look

@ivanbarsukov
Copy link
Contributor Author

Un-draft when ready

Looks ready for me. Should I un-draft it before @portasynthinca3 finishes refactoring?

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