Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. akshaypatil
    3. Best
    A
    • Continue chat with akshaypatil
    • Start new chat with akshaypatil
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups

    Best posts made by akshaypatil

    • RE: Blynk on M5Stack via uiFlow and block-maker

      Done! :D

      from m5ui import *
      from uiflow import *
      from easyIO import *
      
      setScreenColor(0x111111)
      
      circle0 = M5Circle(40, 40, 25, 0xffffff, 0xffffff)
      
      
      import BlynkLib
      BLYNK_AUTH = 'Your Authentication KEY '
      blynk = BlynkLib.Blynk(BLYNK_AUTH)
      
            
      @blynk.VIRTUAL_WRITE(4) # Button Widget on V4
      def my_write_handler(value):
        toggleIO(26)
        
      
      while True:
        blynk.run()
        wait_ms(2)
      posted in PROJECTS
      A
      akshaypatil