├── .gitignore ├── README.md ├── installation ├── README.md ├── doc │ └── images │ │ ├── automaticWidgetInstallationCreation.png │ │ └── nooWidgetsAutomaticInstallationsParams.png └── nooWidgetsAutomaticInstallation.php ├── ledScroller └── V4 │ ├── README.md │ ├── doc │ └── images │ │ ├── associationCommandeWidget.png │ │ ├── commandeInfo.png │ │ ├── creationWidget.png │ │ ├── ledScroller.png │ │ ├── parametresWidget.png │ │ └── scenarioEvent.jpg │ └── index.html ├── nooChart ├── README.md ├── cmd.info.numeric.nooChart.html ├── doc │ └── images │ │ ├── nooChart.gif │ │ ├── nooChartArea.png │ │ ├── nooChartBar.png │ │ ├── nooChartBar3D.png │ │ ├── nooChartParams.png │ │ └── pimpWidgetCreation.png └── nooChart.zip ├── nooCheckBox ├── README.md ├── cmd.action.other.nooCheckBox.html ├── doc │ └── images │ │ ├── nooCheckBoxBlinkingDemo.gif │ │ └── nooCheckBoxDemo.gif └── nooCheckBox.zip ├── nooCircleProgress ├── README.md ├── cmd.info.numeric.nooCircleProgress.html ├── cmd.info.numeric.nooCircleProgress │ └── circle-progress.js ├── doc │ └── images │ │ ├── circleProgress.png │ │ ├── circleProgressParams.gif │ │ ├── nooCircleProgress.gif │ │ ├── pimpWidgetCreation.png │ │ └── pimpjsFileAdd.png └── nooCircleProgress.zip ├── nooCircularSlider ├── README.md ├── cmd.action.slider.nooCircularSlider.html ├── cmd.action.slider.nooCircularSlider │ └── nooCircularSlider.js ├── doc │ └── images │ │ ├── nooCircularSliderDemo.gif │ │ ├── nooCircularSliderParams.png │ │ ├── pimpCodeAdd.png │ │ ├── pimpWidgetCreation.png │ │ └── pimpjsFileAdd.png └── nooCircularSlider.zip ├── nooClockPicker ├── README.md ├── cmd.action.slider.nooClockPicker.html ├── cmd.action.slider.nooClockPicker │ └── jquery-clockpicker.min.js ├── doc │ └── images │ │ └── nooClockPicker.gif └── nooClockPicker.zip ├── nooClockTimePicker ├── README.md ├── cmd.action.slider.nooClockTimePicker.html ├── cmd.action.slider.nooClockTimePicker │ └── jquery-clock-timepicker.min.js ├── doc │ └── images │ │ └── nooClockTimePickerDemo.gif └── nooClockTimePicker.zip ├── nooGlowingButton ├── README.md ├── cmd.action.other.nooGlowingButton.html ├── doc │ └── images │ │ ├── nooGlowingButton.gif │ │ └── nooGlowingButtonParams.png └── nooGlowingButton.zip ├── nooImgProgress ├── README.md ├── cmd.info.numeric.nooImgProgress.html ├── cmd.info.numeric.nooImgProgress │ ├── default.png │ ├── loading-bar.min.css │ └── loading-bar.min.js ├── doc │ └── images │ │ ├── nooImgProgress.gif │ │ └── nooImgProgressBubble.gif └── nooImgProgress.zip ├── nooInfoGradientSlider ├── README.md ├── cmd.info.numeric.nooInfoGradientSlider.html └── doc │ └── images │ └── nooInfoGradientSlider.png ├── nooLedScroller ├── README.md ├── cmd.info.string.nooLedScroller.html ├── doc │ └── images │ │ ├── associationCommandeWidget.png │ │ ├── commandeInfo.png │ │ ├── creationWidget.png │ │ ├── creationWidgetPimp.png │ │ ├── demoNooLedScroller.gif │ │ ├── ledScroller.png │ │ ├── parametresWidget.png │ │ └── scenarioEvent.png └── nooLedScroller.zip ├── nooNeonButton ├── README.md ├── cmd.action.other.nooNeonButton.html ├── doc │ └── images │ │ ├── commandAssociation.png │ │ ├── neonButtonParams.png │ │ ├── nooNeonButton.gif │ │ ├── pimpCodeAdd.png │ │ └── pimpWidgetCreation.png └── nooNeonButton.zip ├── nooPickAColor ├── README.md ├── cmd.action.color.nooPickAColor.html ├── cmd.action.color.nooPickAColor │ ├── pick-a-color-1.2.3.min.css │ ├── pick-a-color.min.js │ └── tinycolor-0.9.15.min.js ├── doc │ └── images │ │ └── nooPickAColorDemo.gif └── nooPickAColor.zip ├── nooSlider ├── README.md ├── cmd.action.slider.nooSlider.html ├── cmd.action.slider.nooSlider │ └── rsSliderLens.js ├── doc │ └── images │ │ ├── nooSliderDemo.gif │ │ ├── nooSliderParams.png │ │ ├── pimpCodeAdd.png │ │ ├── pimpWidgetCreation.png │ │ └── pimpjsFileAdd.png └── nooSlider.zip ├── nooTileGrid ├── README.md ├── cmd.info.string.nooTileGrid.html ├── doc │ └── images │ │ └── nooTileGrid.png └── nooTileGrid.zip └── scenarioModificationParametre ├── README.md ├── blocCodeModificationParametre.php └── doc └── images ├── blocCode.jpg ├── definitionScenario.jpg ├── modificationParIdCommande.jpg ├── modificationParNomCommande.jpg ├── modificationPlusieursParametres.jpg └── parametresOptionnels.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/README.md -------------------------------------------------------------------------------- /installation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/installation/README.md -------------------------------------------------------------------------------- /installation/doc/images/automaticWidgetInstallationCreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/installation/doc/images/automaticWidgetInstallationCreation.png -------------------------------------------------------------------------------- /installation/doc/images/nooWidgetsAutomaticInstallationsParams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/installation/doc/images/nooWidgetsAutomaticInstallationsParams.png -------------------------------------------------------------------------------- /installation/nooWidgetsAutomaticInstallation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/installation/nooWidgetsAutomaticInstallation.php -------------------------------------------------------------------------------- /ledScroller/V4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/ledScroller/V4/README.md -------------------------------------------------------------------------------- /ledScroller/V4/doc/images/associationCommandeWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/ledScroller/V4/doc/images/associationCommandeWidget.png -------------------------------------------------------------------------------- /ledScroller/V4/doc/images/commandeInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/ledScroller/V4/doc/images/commandeInfo.png -------------------------------------------------------------------------------- /ledScroller/V4/doc/images/creationWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/ledScroller/V4/doc/images/creationWidget.png -------------------------------------------------------------------------------- /ledScroller/V4/doc/images/ledScroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/ledScroller/V4/doc/images/ledScroller.png -------------------------------------------------------------------------------- /ledScroller/V4/doc/images/parametresWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/ledScroller/V4/doc/images/parametresWidget.png -------------------------------------------------------------------------------- /ledScroller/V4/doc/images/scenarioEvent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/ledScroller/V4/doc/images/scenarioEvent.jpg -------------------------------------------------------------------------------- /ledScroller/V4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/ledScroller/V4/index.html -------------------------------------------------------------------------------- /nooChart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooChart/README.md -------------------------------------------------------------------------------- /nooChart/cmd.info.numeric.nooChart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooChart/cmd.info.numeric.nooChart.html -------------------------------------------------------------------------------- /nooChart/doc/images/nooChart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooChart/doc/images/nooChart.gif -------------------------------------------------------------------------------- /nooChart/doc/images/nooChartArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooChart/doc/images/nooChartArea.png -------------------------------------------------------------------------------- /nooChart/doc/images/nooChartBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooChart/doc/images/nooChartBar.png -------------------------------------------------------------------------------- /nooChart/doc/images/nooChartBar3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooChart/doc/images/nooChartBar3D.png -------------------------------------------------------------------------------- /nooChart/doc/images/nooChartParams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooChart/doc/images/nooChartParams.png -------------------------------------------------------------------------------- /nooChart/doc/images/pimpWidgetCreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooChart/doc/images/pimpWidgetCreation.png -------------------------------------------------------------------------------- /nooChart/nooChart.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooChart/nooChart.zip -------------------------------------------------------------------------------- /nooCheckBox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCheckBox/README.md -------------------------------------------------------------------------------- /nooCheckBox/cmd.action.other.nooCheckBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCheckBox/cmd.action.other.nooCheckBox.html -------------------------------------------------------------------------------- /nooCheckBox/doc/images/nooCheckBoxBlinkingDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCheckBox/doc/images/nooCheckBoxBlinkingDemo.gif -------------------------------------------------------------------------------- /nooCheckBox/doc/images/nooCheckBoxDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCheckBox/doc/images/nooCheckBoxDemo.gif -------------------------------------------------------------------------------- /nooCheckBox/nooCheckBox.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCheckBox/nooCheckBox.zip -------------------------------------------------------------------------------- /nooCircleProgress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircleProgress/README.md -------------------------------------------------------------------------------- /nooCircleProgress/cmd.info.numeric.nooCircleProgress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircleProgress/cmd.info.numeric.nooCircleProgress.html -------------------------------------------------------------------------------- /nooCircleProgress/cmd.info.numeric.nooCircleProgress/circle-progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircleProgress/cmd.info.numeric.nooCircleProgress/circle-progress.js -------------------------------------------------------------------------------- /nooCircleProgress/doc/images/circleProgress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircleProgress/doc/images/circleProgress.png -------------------------------------------------------------------------------- /nooCircleProgress/doc/images/circleProgressParams.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircleProgress/doc/images/circleProgressParams.gif -------------------------------------------------------------------------------- /nooCircleProgress/doc/images/nooCircleProgress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircleProgress/doc/images/nooCircleProgress.gif -------------------------------------------------------------------------------- /nooCircleProgress/doc/images/pimpWidgetCreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircleProgress/doc/images/pimpWidgetCreation.png -------------------------------------------------------------------------------- /nooCircleProgress/doc/images/pimpjsFileAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircleProgress/doc/images/pimpjsFileAdd.png -------------------------------------------------------------------------------- /nooCircleProgress/nooCircleProgress.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircleProgress/nooCircleProgress.zip -------------------------------------------------------------------------------- /nooCircularSlider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircularSlider/README.md -------------------------------------------------------------------------------- /nooCircularSlider/cmd.action.slider.nooCircularSlider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircularSlider/cmd.action.slider.nooCircularSlider.html -------------------------------------------------------------------------------- /nooCircularSlider/cmd.action.slider.nooCircularSlider/nooCircularSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircularSlider/cmd.action.slider.nooCircularSlider/nooCircularSlider.js -------------------------------------------------------------------------------- /nooCircularSlider/doc/images/nooCircularSliderDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircularSlider/doc/images/nooCircularSliderDemo.gif -------------------------------------------------------------------------------- /nooCircularSlider/doc/images/nooCircularSliderParams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircularSlider/doc/images/nooCircularSliderParams.png -------------------------------------------------------------------------------- /nooCircularSlider/doc/images/pimpCodeAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircularSlider/doc/images/pimpCodeAdd.png -------------------------------------------------------------------------------- /nooCircularSlider/doc/images/pimpWidgetCreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircularSlider/doc/images/pimpWidgetCreation.png -------------------------------------------------------------------------------- /nooCircularSlider/doc/images/pimpjsFileAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircularSlider/doc/images/pimpjsFileAdd.png -------------------------------------------------------------------------------- /nooCircularSlider/nooCircularSlider.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooCircularSlider/nooCircularSlider.zip -------------------------------------------------------------------------------- /nooClockPicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooClockPicker/README.md -------------------------------------------------------------------------------- /nooClockPicker/cmd.action.slider.nooClockPicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooClockPicker/cmd.action.slider.nooClockPicker.html -------------------------------------------------------------------------------- /nooClockPicker/cmd.action.slider.nooClockPicker/jquery-clockpicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooClockPicker/cmd.action.slider.nooClockPicker/jquery-clockpicker.min.js -------------------------------------------------------------------------------- /nooClockPicker/doc/images/nooClockPicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooClockPicker/doc/images/nooClockPicker.gif -------------------------------------------------------------------------------- /nooClockPicker/nooClockPicker.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooClockPicker/nooClockPicker.zip -------------------------------------------------------------------------------- /nooClockTimePicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooClockTimePicker/README.md -------------------------------------------------------------------------------- /nooClockTimePicker/cmd.action.slider.nooClockTimePicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooClockTimePicker/cmd.action.slider.nooClockTimePicker.html -------------------------------------------------------------------------------- /nooClockTimePicker/cmd.action.slider.nooClockTimePicker/jquery-clock-timepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooClockTimePicker/cmd.action.slider.nooClockTimePicker/jquery-clock-timepicker.min.js -------------------------------------------------------------------------------- /nooClockTimePicker/doc/images/nooClockTimePickerDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooClockTimePicker/doc/images/nooClockTimePickerDemo.gif -------------------------------------------------------------------------------- /nooClockTimePicker/nooClockTimePicker.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooClockTimePicker/nooClockTimePicker.zip -------------------------------------------------------------------------------- /nooGlowingButton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooGlowingButton/README.md -------------------------------------------------------------------------------- /nooGlowingButton/cmd.action.other.nooGlowingButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooGlowingButton/cmd.action.other.nooGlowingButton.html -------------------------------------------------------------------------------- /nooGlowingButton/doc/images/nooGlowingButton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooGlowingButton/doc/images/nooGlowingButton.gif -------------------------------------------------------------------------------- /nooGlowingButton/doc/images/nooGlowingButtonParams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooGlowingButton/doc/images/nooGlowingButtonParams.png -------------------------------------------------------------------------------- /nooGlowingButton/nooGlowingButton.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooGlowingButton/nooGlowingButton.zip -------------------------------------------------------------------------------- /nooImgProgress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooImgProgress/README.md -------------------------------------------------------------------------------- /nooImgProgress/cmd.info.numeric.nooImgProgress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooImgProgress/cmd.info.numeric.nooImgProgress.html -------------------------------------------------------------------------------- /nooImgProgress/cmd.info.numeric.nooImgProgress/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooImgProgress/cmd.info.numeric.nooImgProgress/default.png -------------------------------------------------------------------------------- /nooImgProgress/cmd.info.numeric.nooImgProgress/loading-bar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooImgProgress/cmd.info.numeric.nooImgProgress/loading-bar.min.css -------------------------------------------------------------------------------- /nooImgProgress/cmd.info.numeric.nooImgProgress/loading-bar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooImgProgress/cmd.info.numeric.nooImgProgress/loading-bar.min.js -------------------------------------------------------------------------------- /nooImgProgress/doc/images/nooImgProgress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooImgProgress/doc/images/nooImgProgress.gif -------------------------------------------------------------------------------- /nooImgProgress/doc/images/nooImgProgressBubble.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooImgProgress/doc/images/nooImgProgressBubble.gif -------------------------------------------------------------------------------- /nooImgProgress/nooImgProgress.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooImgProgress/nooImgProgress.zip -------------------------------------------------------------------------------- /nooInfoGradientSlider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooInfoGradientSlider/README.md -------------------------------------------------------------------------------- /nooInfoGradientSlider/cmd.info.numeric.nooInfoGradientSlider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooInfoGradientSlider/cmd.info.numeric.nooInfoGradientSlider.html -------------------------------------------------------------------------------- /nooInfoGradientSlider/doc/images/nooInfoGradientSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooInfoGradientSlider/doc/images/nooInfoGradientSlider.png -------------------------------------------------------------------------------- /nooLedScroller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooLedScroller/README.md -------------------------------------------------------------------------------- /nooLedScroller/cmd.info.string.nooLedScroller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooLedScroller/cmd.info.string.nooLedScroller.html -------------------------------------------------------------------------------- /nooLedScroller/doc/images/associationCommandeWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooLedScroller/doc/images/associationCommandeWidget.png -------------------------------------------------------------------------------- /nooLedScroller/doc/images/commandeInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooLedScroller/doc/images/commandeInfo.png -------------------------------------------------------------------------------- /nooLedScroller/doc/images/creationWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooLedScroller/doc/images/creationWidget.png -------------------------------------------------------------------------------- /nooLedScroller/doc/images/creationWidgetPimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooLedScroller/doc/images/creationWidgetPimp.png -------------------------------------------------------------------------------- /nooLedScroller/doc/images/demoNooLedScroller.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooLedScroller/doc/images/demoNooLedScroller.gif -------------------------------------------------------------------------------- /nooLedScroller/doc/images/ledScroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooLedScroller/doc/images/ledScroller.png -------------------------------------------------------------------------------- /nooLedScroller/doc/images/parametresWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooLedScroller/doc/images/parametresWidget.png -------------------------------------------------------------------------------- /nooLedScroller/doc/images/scenarioEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooLedScroller/doc/images/scenarioEvent.png -------------------------------------------------------------------------------- /nooLedScroller/nooLedScroller.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooLedScroller/nooLedScroller.zip -------------------------------------------------------------------------------- /nooNeonButton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooNeonButton/README.md -------------------------------------------------------------------------------- /nooNeonButton/cmd.action.other.nooNeonButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooNeonButton/cmd.action.other.nooNeonButton.html -------------------------------------------------------------------------------- /nooNeonButton/doc/images/commandAssociation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooNeonButton/doc/images/commandAssociation.png -------------------------------------------------------------------------------- /nooNeonButton/doc/images/neonButtonParams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooNeonButton/doc/images/neonButtonParams.png -------------------------------------------------------------------------------- /nooNeonButton/doc/images/nooNeonButton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooNeonButton/doc/images/nooNeonButton.gif -------------------------------------------------------------------------------- /nooNeonButton/doc/images/pimpCodeAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooNeonButton/doc/images/pimpCodeAdd.png -------------------------------------------------------------------------------- /nooNeonButton/doc/images/pimpWidgetCreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooNeonButton/doc/images/pimpWidgetCreation.png -------------------------------------------------------------------------------- /nooNeonButton/nooNeonButton.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooNeonButton/nooNeonButton.zip -------------------------------------------------------------------------------- /nooPickAColor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooPickAColor/README.md -------------------------------------------------------------------------------- /nooPickAColor/cmd.action.color.nooPickAColor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooPickAColor/cmd.action.color.nooPickAColor.html -------------------------------------------------------------------------------- /nooPickAColor/cmd.action.color.nooPickAColor/pick-a-color-1.2.3.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooPickAColor/cmd.action.color.nooPickAColor/pick-a-color-1.2.3.min.css -------------------------------------------------------------------------------- /nooPickAColor/cmd.action.color.nooPickAColor/pick-a-color.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooPickAColor/cmd.action.color.nooPickAColor/pick-a-color.min.js -------------------------------------------------------------------------------- /nooPickAColor/cmd.action.color.nooPickAColor/tinycolor-0.9.15.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooPickAColor/cmd.action.color.nooPickAColor/tinycolor-0.9.15.min.js -------------------------------------------------------------------------------- /nooPickAColor/doc/images/nooPickAColorDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooPickAColor/doc/images/nooPickAColorDemo.gif -------------------------------------------------------------------------------- /nooPickAColor/nooPickAColor.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooPickAColor/nooPickAColor.zip -------------------------------------------------------------------------------- /nooSlider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooSlider/README.md -------------------------------------------------------------------------------- /nooSlider/cmd.action.slider.nooSlider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooSlider/cmd.action.slider.nooSlider.html -------------------------------------------------------------------------------- /nooSlider/cmd.action.slider.nooSlider/rsSliderLens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooSlider/cmd.action.slider.nooSlider/rsSliderLens.js -------------------------------------------------------------------------------- /nooSlider/doc/images/nooSliderDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooSlider/doc/images/nooSliderDemo.gif -------------------------------------------------------------------------------- /nooSlider/doc/images/nooSliderParams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooSlider/doc/images/nooSliderParams.png -------------------------------------------------------------------------------- /nooSlider/doc/images/pimpCodeAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooSlider/doc/images/pimpCodeAdd.png -------------------------------------------------------------------------------- /nooSlider/doc/images/pimpWidgetCreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooSlider/doc/images/pimpWidgetCreation.png -------------------------------------------------------------------------------- /nooSlider/doc/images/pimpjsFileAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooSlider/doc/images/pimpjsFileAdd.png -------------------------------------------------------------------------------- /nooSlider/nooSlider.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooSlider/nooSlider.zip -------------------------------------------------------------------------------- /nooTileGrid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooTileGrid/README.md -------------------------------------------------------------------------------- /nooTileGrid/cmd.info.string.nooTileGrid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooTileGrid/cmd.info.string.nooTileGrid.html -------------------------------------------------------------------------------- /nooTileGrid/doc/images/nooTileGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooTileGrid/doc/images/nooTileGrid.png -------------------------------------------------------------------------------- /nooTileGrid/nooTileGrid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/nooTileGrid/nooTileGrid.zip -------------------------------------------------------------------------------- /scenarioModificationParametre/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/scenarioModificationParametre/README.md -------------------------------------------------------------------------------- /scenarioModificationParametre/blocCodeModificationParametre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/scenarioModificationParametre/blocCodeModificationParametre.php -------------------------------------------------------------------------------- /scenarioModificationParametre/doc/images/blocCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/scenarioModificationParametre/doc/images/blocCode.jpg -------------------------------------------------------------------------------- /scenarioModificationParametre/doc/images/definitionScenario.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/scenarioModificationParametre/doc/images/definitionScenario.jpg -------------------------------------------------------------------------------- /scenarioModificationParametre/doc/images/modificationParIdCommande.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/scenarioModificationParametre/doc/images/modificationParIdCommande.jpg -------------------------------------------------------------------------------- /scenarioModificationParametre/doc/images/modificationParNomCommande.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/scenarioModificationParametre/doc/images/modificationParNomCommande.jpg -------------------------------------------------------------------------------- /scenarioModificationParametre/doc/images/modificationPlusieursParametres.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/scenarioModificationParametre/doc/images/modificationPlusieursParametres.jpg -------------------------------------------------------------------------------- /scenarioModificationParametre/doc/images/parametresOptionnels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noodom/jeedom_widgets/HEAD/scenarioModificationParametre/doc/images/parametresOptionnels.jpg --------------------------------------------------------------------------------