blinkenstrip

Documentation: http://frombelow.net/projects/blinkenstrip/
Clone: git clone https://git.frombelow.net/blinkenstrip.git
Log | Files | Refs | README | LICENSE

Kconfig.projbuild (3010B)


      1 menu "Blinkenstrip"
      2 
      3 config WS2811_DATA_PIN
      4     int "LED Strip Signal Line"
      5     default 4
      6     range 2 35
      7     help
      8         Pin D2 on the ESP-WROOM-32 board is 2.
      9         Pin D4 on the ESP-WROOM-32 board is 4.
     10         ...
     11 
     12 config PIN_FACTORY_RESET_A
     13     int "First pin for factory reset"
     14     default 12
     15     range 2 35
     16     help
     17         When factory reset pins A and B are connected on power-up,
     18         the device resets to factory settings.
     19 
     20 config PIN_FACTORY_RESET_B
     21     int "Second pin for factory reset"
     22     default 13
     23     range 2 35
     24     help
     25         When factory reset pins A and B are connected on power-up,
     26         the device resets to factory settings.
     27 
     28 config APP_NAME
     29     string "Name of the application"
     30     default "Blinkenstrip"
     31     help
     32       The name of the application is shown on the web pages.
     33 
     34 
     35 config WIFI_AP
     36     bool "Factory default: Run WIFI Access Point"
     37     default y
     38     help
     39         If true, run our own access point. If false, connect as client to WIFI
     40         network. This is the default value after factory reset. When the device
     41         runs, this value can be configured via the web interface.
     42 
     43 config WIFI_SSID
     44     string "Factory default: WIFI Network Name"
     45     default "blinkenstrip"
     46     help
     47       SSID of your WIFI Network. This is the default value after factory reset.
     48       When the device runs, this value can be configured via the web interface.
     49 
     50 config WIFI_PASSWORD
     51     string "Factory default: WIFI WPA2 Password"
     52     default "blinkenstrip"
     53     help
     54       Password of your WIFI Network. This is the default value after factory
     55       reset. When the device runs, this value can be configured via the web
     56       interface. MINIMAL PASSWORD LENGTH IS 8 CHARACTERS!
     57 
     58 config LED_STRIP_WIDTH
     59     int "Factory default: Width of Matrix"
     60     default 8
     61     range 0 1024
     62     help
     63       This is the default value after factory reset. When the device runs, this
     64       value can be configured via the web interface.
     65 
     66 config LED_STRIP_HEIGHT
     67     int "Factory default: Height of Matrix"
     68     default 8
     69     range 0 1024
     70     help
     71       This is the default value after factory reset. When the device runs, this
     72       value can be configured via the web interface.
     73 
     74 config LED_STRIP_SNAKE
     75     bool "Factory default: Snake wiring?"
     76     default n
     77     help
     78       LEDs may be wired lineary or in "snake wiring", i.e. first row
     79       left-to-right, second row right-to-left, ...
     80 
     81 config WRAP_AROUND
     82     bool "Factory default: Ends of LED strip connected?"
     83     default n
     84     help
     85       Set this if the ends of the LED strip are connected to each other.
     86 
     87 config NUMBER_OF_WORMS
     88     int "Factory default: Number of worms in mode \"Worm\""
     89     default 1
     90     range 0 255
     91     help
     92       Number of worms shown in mode "Worm".
     93 
     94 config MAX_BRIGHTNESS
     95     int "Factory default: Maximal Brightness of LEDs"
     96     default 32
     97     range 0 255
     98     help
     99       This is the default value after factory reset. When the device runs, this
    100       value can be configured via the web interface.
    101 
    102 endmenu # Blinkenstrip