use PWM buzzer on notification module. To activate set moduleConfig.external_notification.output equal to the PIN_BUZZER. If another value is set, the traditional digital mode is used

This commit is contained in:
Thomas Göttgens
2022-10-22 13:35:34 +02:00
parent 0bda4c2f76
commit d4ddcdd91e
2 changed files with 34 additions and 16 deletions

View File

@@ -12,6 +12,8 @@
*/
class ExternalNotificationModule : public SinglePortModule, private concurrency::OSThread
{
uint32_t output = EXT_NOTIFY_OUT;
public:
ExternalNotificationModule();