From ee9cd00ed5802b5106b87d2a785574ad141a15bf Mon Sep 17 00:00:00 2001 From: Edward Firmo <94725493+edwardtfn@users.noreply.github.com> Date: Thu, 21 Nov 2024 07:31:47 +0100 Subject: [PATCH] Reset yamllint --- esphome/nspanel_esphome_core_buzzer.yaml | 44 ------------------------ 1 file changed, 44 deletions(-) delete mode 100644 esphome/nspanel_esphome_core_buzzer.yaml diff --git a/esphome/nspanel_esphome_core_buzzer.yaml b/esphome/nspanel_esphome_core_buzzer.yaml deleted file mode 100644 index 4c5ca610f..000000000 --- a/esphome/nspanel_esphome_core_buzzer.yaml +++ /dev/null @@ -1,44 +0,0 @@ -##################################################################################################### -##### NSPANEL ESPHOME created by Blackymas - https://github.com/Blackymas/NSPanel_HA_Blueprint ##### -##### ESPHOME CORE - BUZZER ##### -##### PLEASE only make changes if it is necessary and also the required knowledge is available. ##### -##### For normal use with the Blueprint, no changes are necessary. ##### -##################################################################################################### - -##### External references ##### -# nspanel_esphome_core.yaml: -# api.actions.notification_show -############################### - ---- -api: - id: !extend api_server - actions: - - action: rtttl_play - variables: - tone: string # The RTTTL string for the melody to be played. It should follow the RTTTL format, including the melody's name, default settings, and a sequence of notes. - then: - - lambda: |- - if (!id(is_uploading_tft)) buzzer->play(tone); - -output: - # Buzzer output - - id: buzzer_out - platform: ledc - pin: - number: 21 - -##### ENABLE RINGTONE MUSIC SUPPORT ##### -rtttl: - id: buzzer - output: buzzer_out - -script: - - id: !extend page_boot - then: - - lambda: |- - if (notification_sound->state) { - boot_log->execute("Boot", "Play boot sound"); - buzzer->play("two short:d=4,o=5,b=100:16e6,16e6"); - } -...