1menu "AliGenie Example Configuration" 2 3 menu "AliGenie Triples Configuration" 4 5 config TRIPLES_PRODUCT_ID 6 int "Product ID" 7 default 0 8 9 config TRIPLES_DEVICE_NAME 10 string "Device Name" 11 default "Device Name" 12 help 13 Please use lower case 14 15 config TRIPLES_DEVICE_SECRET 16 string "Device Secret" 17 default "Device Secret" 18 help 19 Please use lower case 20 21 endmenu 22 23 menu "light driver config" 24 config LIGHT_GPIO_RED 25 int "Light red pin GPIO number" 26 range -1 33 27 default 25 28 help 29 There are more enumerations like that 30 up to GPIO39, excluding GPIO20, GPIO24 and GPIO28..31. 31 They are not shown here to reduce redundant information. 32 @note GPIO34..39 are input mode only. 33 34 config LIGHT_GPIO_GREEN 35 int "Light green pin GPIO number" 36 range -1 33 37 default 26 38 help 39 There are more enumerations like that 40 up to GPIO39, excluding GPIO20, GPIO24 and GPIO28..31. 41 They are not shown here to reduce redundant information. 42 @note GPIO34..39 are input mode only. 43 44 config LIGHT_GPIO_BLUE 45 int "Light blue pin GPIO number" 46 range -1 33 47 default 27 48 help 49 There are more enumerations like that 50 up to GPIO39, excluding GPIO20, GPIO24 and GPIO28..31. 51 They are not shown here to reduce redundant information. 52 @note GPIO34..39 are input mode only. 53 54 config LIGHT_GPIO_COLD 55 int "Light cold colors pin GPIO number" 56 range -1 33 57 default -1 58 help 59 There are more enumerations like that 60 up to GPIO39, excluding GPIO20, GPIO24 and GPIO28..31. 61 They are not shown here to reduce redundant information. 62 @note GPIO34..39 are input mode only. 63 64 config LIGHT_GPIO_WARM 65 int "Light warm color pin GPIO number" 66 range -1 33 67 default -1 68 help 69 There are more enumerations like that 70 up to GPIO39, excluding GPIO20, GPIO24 and GPIO28..31. 71 They are not shown here to reduce redundant information. 72 @note GPIO34..39 are input mode only. 73 74 config LIGHT_FADE_PERIOD_MS 75 int "The time from the current color to the next color" 76 default 500 77 help 78 The time from the current color to the next color. 79 80 config LIGHT_BLINK_PERIOD_MS 81 int "Period of blinking lights" 82 default 2000 83 help 84 Period of blinking lights. 85 86 endmenu 87 88endmenu 89