🤖Have you ever tried Chat.M5Stack.com before asking??😎
    M5Stack Community
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    Disable start-up beep

    Cores
    6
    17
    29.9k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • ajb2k3A
      ajb2k3 @m5er
      last edited by

      @m5er said in Disable start-up beep:

      Indeed, I'm interested in that too. I find that short sound glitch quite annoying.

      And me makes three.

      UIFlow, so easy an adult can learn it!
      If I don't know it, be patient!
      I've ether not learned it or am too drunk to remember it!
      Author of the WIP UIFlow Handbook!
      M5Black, Go, Stick, Core2, and so much more it cant be fit in here!

      1 Reply Last reply Reply Quote 0
      • m5-docsM
        m5-docs
        last edited by

        Means disable start-up beep within the uiflow firmware?

        M5Stack documentation URL

        https://docs.m5stack.com

        world101W 1 Reply Last reply Reply Quote 0
        • world101W
          world101 @m5-docs
          last edited by

          @watson said in Disable start-up beep:

          Means disable start-up beep within the uiflow firmware?

          Yes. I found where the second beep is defined when you press buttons A, B, or C after the first beep. But I would like to disable the first beep as well.

          M 1 Reply Last reply Reply Quote 0
          • M
            m5er @world101
            last edited by

            @world101, I just tested that commenting out Speaker.begin(); in M5Stack.cpp seems to get rid of the short glitch at startup. That did the trick for me, let me know if that works for you too.

            Of course that applies only to projects that don't need the speaker at all. :)

            world101W 1 Reply Last reply Reply Quote 0
            • world101W
              world101 @m5er
              last edited by world101

              @m5er
              Yeah, I know about that for the Arduino IDE, but I was looking for a solution for uiFlow firmware.

              H 1 Reply Last reply Reply Quote 0
              • H
                heybin @world101
                last edited by

                @world101 Hi,if you can flash firmware, i can provide a version without beep :)

                1 Reply Last reply Reply Quote 0
                • world101W
                  world101
                  last edited by

                  @heybin said in Disable start-up beep:

                  @world101 Hi,if you can flash firmware, i can provide a version without beep :)

                  I assume the first beep is compiled into the firmware bin file and not a configuration setting in one of the python files. Anyway, yes I can flash firmware, so please send it to me.

                  H 1 Reply Last reply Reply Quote 0
                  • H
                    heybin @world101
                    last edited by

                    Can you send your email to me by chats

                    world101W 1 Reply Last reply Reply Quote 0
                    • world101W
                      world101 @heybin
                      last edited by

                      @heybin

                      I got it flashed and it's working good. No startup beep :-)

                      For anyone else interested in v1.2.0 without the startup beeps...
                      https://www.dropbox.com/s/093qcc7e51ywl4m/nobeep.zip?dl=0

                      Pre-requisite: you must have esptool.py installed on your Mac and the m5stack is connected to a USB port.

                      unzip nobeep.zip 
                      cd nobeep
                      esptool.py --chip esp32 --port /dev/tty.SLAB_USBtoUART --baud 921600 erase_flash
                      esptool.py --chip esp32 --port /dev/tty.SLAB_USBtoUART --baud 921600 write_flash -z 0x1000 ./bootloader.bin 0xf000 ./phy_init_data.bin 0x10000 ./MicroPython.bin 0x8000 ./partitions_mpy.bin
                      esptool.py --chip esp32 --port /dev/tty.SLAB_USBtoUART --baud 921600 --before default_reset --after no_reset write_flash -z --flash_freq 40m 0x170000 ./spiffs_image_0x170000.img
                      

                      Reboot the m5stack.

                      To silence the second beep (when choosing Upload, App.List, or Setup) do this:
                      Pre-requisite: you must have ampy installed on your Mac

                      ampy get /flash/boot.py
                      

                      Copy the entire output and create a new file called boot.py. Make the change below to set volume=0 in these three locations of the while loop.

                      # wait 1000 for user choose
                      cnt_down = time.ticks_ms() + 1000
                      while time.ticks_ms() < cnt_down:
                          if buttonA.isPressed():   # M5Cloud upload     
                              speaker.tone(2000, 50, volume=0, timer=False) # Beep
                              core_start('flow')
                              break
                      
                          elif buttonB.isPressed(): # APP list
                              speaker.tone(2000, 50, volume=0, timer=False) # Beep
                              from app_manage import file_choose
                              file_choose()
                              core_start('app')
                              break
                      
                          elif buttonC.isPressed(): # WiFi setting
                              speaker.tone(2000, 50, volume=0, timer=False) # Beep
                              import wifichoose
                              wifichoose.start()
                              break
                      

                      Upload the new file to the m5stack:

                      ampy put boot.py /flash/boot.py
                      

                      Reboot the m5stack.

                      1 Reply Last reply Reply Quote 0
                      • I
                        iPodLux
                        last edited by

                        This is great!!! exactly what I was looking for.
                        Would it be possible to have all new firmwares for both core/stick with and without beeps?!? It is quite annoying especially when prototyping with other people around, too many unnecessary resets and beeps

                        Is there a way to put forward a formal request for no-beeps or options in main menu?

                        1 Reply Last reply Reply Quote 0
                        • I
                          iPodLux
                          last edited by

                          the ampy get /flash/boot.py command doesn't seem to work on my mac.

                          I've tried adding the uart address and bauds but no luck.....

                          any caveat?!

                          ajb2k3A world101W 2 Replies Last reply Reply Quote 0
                          • ajb2k3A
                            ajb2k3 @iPodLux
                            last edited by

                            @ipodlux There seams to be a few issues with mac at the moment, the crews are working on trying to solve them.

                            UIFlow, so easy an adult can learn it!
                            If I don't know it, be patient!
                            I've ether not learned it or am too drunk to remember it!
                            Author of the WIP UIFlow Handbook!
                            M5Black, Go, Stick, Core2, and so much more it cant be fit in here!

                            1 Reply Last reply Reply Quote 0
                            • world101W
                              world101 @iPodLux
                              last edited by

                              @ipodlux said in Disable start-up beep:

                              the ampy get /flash/boot.py command doesn't seem to work on my mac.

                              I've tried adding the uart address and bauds but no luck.....

                              any caveat?!

                              Did you install ampy on your Mac? If not, it won’t work. You can find install instructions here: https://learn.adafruit.com/micropython-basics-load-files-and-run-code/install-ampy

                              Also, I need to double check tomorrow, but starting with uiFlow firmware v1.2.3, I think the M5Stack team already disabled the first startup beep in the firmware.

                              I 1 Reply Last reply Reply Quote 0
                              • I
                                iPodLux @world101
                                last edited by

                                @world101
                                Hi I certainly did it, ampy is installed and functional but doesn’t seem to connect to the device.
                                Thanks for looking into this. Removing all unnecessary beeps from the standard firmware would be great. No-one would buy a car honking at every steering or dashboard switch activation!

                                world101W 1 Reply Last reply Reply Quote 0
                                • world101W
                                  world101 @iPodLux
                                  last edited by world101

                                  @ipodlux

                                  If it's not connecting to the device, what errors do you see? Paste your command line output here and maybe I can help further.

                                  One other custom I did for ampy... I created the file ~/.ampy with these contents:

                                  # Example .ampy file
                                  # Please fill in your own port, baud rate, and delay
                                  AMPY_PORT=/dev/tty.SLAB_USBtoUART
                                  AMPY_BAUD=115200
                                  # Fix for macOS users' "Could not enter raw repl"; try 2.0 and lower from there:
                                  #AMPY_DELAY=0.5
                                  

                                  If you create that file, you will not have to pass the port and baud rate options when running the ampy command. This is the standard way to run ampy when you don't have the .ampy file created.

                                  world101$ ampy -p /dev/tty.SLAB_USBtoUART -b 115200 ls
                                  /flash
                                  

                                  Also, I was mistaken on the the v1.2.3 firmware with the beeps disabled by default. I just flashed one of my cores with the M5Burner and the beeps are there. I must have been running a custom firmware before.

                                  1 Reply Last reply Reply Quote 1
                                  • First post
                                    Last post