{"id":37697,"date":"2021-06-21T18:21:12","date_gmt":"2021-06-21T16:21:12","guid":{"rendered":"http:\/\/support.ilevia.com\/?p=37697"},"modified":"2021-06-24T10:07:04","modified_gmt":"2021-06-24T08:07:04","slug":"power-redundancy-with-setpoint","status":"publish","type":"post","link":"https:\/\/support.ilevia.com\/en\/configuration-software-en\/power-redundancy-with-setpoint\/","title":{"rendered":"Power redundancy with setpoint"},"content":{"rendered":"[et_pb_section fb_built=&#8221;1&#8243; _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;0px|||||&#8221;][et_pb_row _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;0px||0px|||&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;][et_pb_text _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;]\n<h1 style=\"text-align: center;\">POWER REDUNDANCY AND SEASON MODE SCRIPT<\/h1>\n[\/et_pb_text][et_pb_divider _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;][\/et_pb_divider][\/et_pb_column][\/et_pb_row][et_pb_row _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221; custom_padding=&#8221;||0px|||&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;][et_pb_text _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221; custom_margin=&#8221;||40px||false|false&#8221;]\n<blockquote>\n<h2><strong>INTRODUCTION<\/strong><\/h2>\n<\/blockquote>\n<p>This page will show you how to set up a script that will add or remove degrees from the set point based on which season is selected insdie a drop down menu (Summer \/ Winter). This script will take care eather of the current instant power, if the power is enaugh then the function will proceed its course if not the function won&#8217;t start and the set point will be set back to its first value.<\/p>\n[\/et_pb_text][et_pb_text _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;]\n<h2 style=\"text-align: center;\"><strong>Script setup<\/strong><\/h2>\n[\/et_pb_text][et_pb_text _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;]\n<blockquote>\n<h3><strong>Variables<\/strong><\/h3>\n<\/blockquote>\n<p>This script uses variables in order to gather first information that are needed for the function process later on. At each variable you must associate a component ID. You can get the component ID once you add the component inside the project.<\/p>\n[\/et_pb_text][et_pb_text _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;]\n<p><em><strong>Script&#8217;s variables<\/strong><\/em>:<\/p>\n<p><em>var instant_power<\/em>:\u00a0Component that contain the instant power;<\/p>\n<p><em>var redundancy_power_level<\/em>:\u00a0Production level beyond which consumption is triggered;<\/p>\n<p><em>var normal_power_level<\/em>:\u00a0Level which under everything get stoped;<\/p>\n<p><em>var season<\/em>: Components that indicates the current season;<\/p>\n<p><em>var setpoint<\/em>: Component that indicates the current setpoint;<\/p>\n<p><em>var active<\/em>:\u00a0Indicates if the system is in redundancy;<\/p>\n<p><em>var\u00a0previous_setpoint_value<\/em>: Get the fisrt value of the set point in order to set it back at its original value.\u00a0<\/p>\n[\/et_pb_text][et_pb_image src=&#8221;http:\/\/support.ilevia.com\/wp-content\/uploads\/2021\/06\/Script_power_variables_1.png&#8221; alt=&#8221;Scritp variables in order to gather the first information from the components inside the Home automation software EVE manager Pro&#8221; title_text=&#8221;Script_power_variables_1&#8243; show_in_lightbox=&#8221;on&#8221; align=&#8221;center&#8221; _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;85%&#8221; width_tablet=&#8221;&#8221; width_phone=&#8221;100%&#8221; width_last_edited=&#8221;on|phone&#8221; custom_margin=&#8221;50px||50px||false|false&#8221; module_alignment_last_edited=&#8221;off|phone&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;]\n<blockquote>\n<h3><strong>Javascript function<\/strong><\/h3>\n<\/blockquote>\n[\/et_pb_text][et_pb_text _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;]\n<p>In this script we will use one major function.<\/p>\n<p><strong>Function 1: power_changing<\/strong>:<\/p>\n<p>This function will get the <em>instant_power<\/em> value, if the redundancy is not active then the function will proceed.<\/p>\n[\/et_pb_text][et_pb_image src=&#8221;http:\/\/support.ilevia.com\/wp-content\/uploads\/2021\/06\/Scirpt_power_function_pt1.png&#8221; alt=&#8221;First part of the function that will gather the instant power and decide if it is safe to start the process or not&#8221; title_text=&#8221;Scirpt_power_function_pt1&#8243; show_in_lightbox=&#8221;on&#8221; align=&#8221;center&#8221; _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;85%&#8221; width_tablet=&#8221;&#8221; width_phone=&#8221;&#8221; width_last_edited=&#8221;on|phone&#8221; custom_margin=&#8221;50px||50px||false|false&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;]\n<p><strong>Function 1 part 2<\/strong>: Setting the corrisponding value to the set point, interrupting the function if the power goes under the minimum value<\/p>\n<p>If the power level is above the minimum threshold the function will continue by gatherning the current value of the set point and the value of the drop down menu, finally it will save the initial set point value. Based on the value of the drop down menu Summer\/Winter a value to the set point will be added or removed, Instead, if the system end up beign redundancy, the set point will be reset to its fisrt value and the system will be brought back to normal mode <em>active<\/em>=false.<\/p>\n[\/et_pb_text][et_pb_image src=&#8221;http:\/\/support.ilevia.com\/wp-content\/uploads\/2021\/06\/Script_power_function_part2_2.png&#8221; alt=&#8221;Second part of the function, this part read the value of the drop down menu and set the temperature to the set point based on which season is selected in the drop down menu. If the power is not enaugh the function will be stoped.&#8221; title_text=&#8221;Script_power_function_part2_2&#8243; show_in_lightbox=&#8221;on&#8221; align=&#8221;center&#8221; _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;85%&#8221; width_tablet=&#8221;&#8221; width_phone=&#8221;&#8221; width_last_edited=&#8221;on|phone&#8221; custom_margin=&#8221;50px||50px||false|false&#8221;][\/et_pb_image][et_pb_text _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;]\n<p><strong>Set trigger<\/strong>:<\/p>\n<p>Now, in order to trigger the function you need to apply the <em>setTrigger<\/em> statement. This will set the trigger to the function <em>power_changing<\/em> , without it the function won&#8217;t start. Click this <a href=\"http:\/\/support.ilevia.com\/configuration-software-en\/script\/#setTriggerInfo\">link<\/a> for further information about the <em>set trigger<\/em> statement.<\/p>\n[\/et_pb_text][et_pb_image src=&#8221;http:\/\/support.ilevia.com\/wp-content\/uploads\/2021\/06\/Script_power_settrigger.png&#8221; alt=&#8221;Setting the setTrigger statement in order to trigger the function &#8221; title_text=&#8221;Script_power_settrigger&#8221; show_in_lightbox=&#8221;on&#8221; align=&#8221;center&#8221; _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;85%&#8221; width_tablet=&#8221;&#8221; width_phone=&#8221;&#8221; width_last_edited=&#8221;on|phone&#8221; custom_margin=&#8221;50px||50px||false|false&#8221;][\/et_pb_image][et_pb_testimonial quote_icon=&#8221;off&#8221; portrait_width=&#8221;0px&#8221; portrait_height=&#8221;0px&#8221; use_icon_font_size=&#8221;on&#8221; icon_font_size=&#8221;0px&#8221; _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221; hover_enabled=&#8221;0&#8243; locked=&#8221;off&#8221; sticky_enabled=&#8221;0&#8243;]\n<p>Here you can find the test project which you can download to test this script your self!<\/p>\n<p><a href=\"http:\/\/support.ilevia.com\/wp-content\/uploads\/2021\/06\/redundancy_use.zip\">Download here \u21e3<\/a><\/p>\n[\/et_pb_testimonial][\/et_pb_column][\/et_pb_row][\/et_pb_section][et_pb_section fb_built=&#8221;1&#8243; inner_shadow=&#8221;on&#8221; _builder_version=&#8221;3.22&#8243; background_color=&#8221;#fafafa&#8221; parallax=&#8221;on&#8221; min_height=&#8221;280px&#8221; locked=&#8221;off&#8221; collapsed=&#8221;off&#8221;][et_pb_row module_class=&#8221; et_pb_row_fullwidth&#8221; _builder_version=&#8221;4.7.5&#8243; width=&#8221;91%&#8221; width_tablet=&#8221;80%&#8221; width_last_edited=&#8221;off|desktop&#8221; max_width=&#8221;90%&#8221; max_width_tablet=&#8221;80%&#8221; max_width_phone=&#8221;&#8221; max_width_last_edited=&#8221;on|desktop&#8221; custom_padding=&#8221;30px|0px|22.8594px|0px|false|false&#8221; make_fullwidth=&#8221;on&#8221; collapsed=&#8221;off&#8221;][et_pb_column type=&#8221;4_4&#8243; _builder_version=&#8221;3.25&#8243; custom_padding=&#8221;|||&#8221; custom_padding__hover=&#8221;|||&#8221;][et_pb_text _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;]\n<h1 style=\"text-align: center;\">Still Need Help? Our Customer Service Is Here For You.<\/h1>\n[\/et_pb_text][\/et_pb_column][\/et_pb_row][et_pb_row column_structure=&#8221;1_2,1_2&#8243; _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221; width=&#8221;100%&#8221;][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;][et_pb_button button_url=&#8221;http:\/\/support.ilevia.com\/contacts\/&#8221; button_text=&#8221;Ask For Help&#8221; button_alignment=&#8221;center&#8221; _builder_version=&#8221;4.7.5&#8243; custom_button=&#8221;on&#8221; button_text_color=&#8221;#ffffff&#8221; button_bg_color=&#8221;#1C82F1&#8243; button_border_width=&#8221;0px&#8221; button_font=&#8221;||||||||&#8221; button_use_icon=&#8221;off&#8221; custom_margin=&#8221;|-120px|||false|false&#8221; custom_margin_tablet=&#8221;&#8221; custom_margin_phone=&#8221;|0px|||false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; box_shadow_style=&#8221;preset2&#8243; box_shadow_spread=&#8221;-80px&#8221; box_shadow_spread__hover=&#8221;0px&#8221; box_shadow_spread__hover_enabled=&#8221;on&#8221;][\/et_pb_button][\/et_pb_column][et_pb_column type=&#8221;1_2&#8243; _builder_version=&#8221;4.7.5&#8243; _module_preset=&#8221;default&#8221;][et_pb_button button_url=&#8221;http:\/\/support.ilevia.com\/contacts\/&#8221; button_text=&#8221;Make a suggestion&#8221; button_alignment=&#8221;center&#8221; _builder_version=&#8221;4.7.5&#8243; custom_button=&#8221;on&#8221; button_text_size=&#8221;21px&#8221; button_bg_color=&#8221;#1C82F1&#8243; button_border_width=&#8221;0px&#8221; button_use_icon=&#8221;off&#8221; custom_margin=&#8221;|||-120px|false|false&#8221; custom_margin_tablet=&#8221;&#8221; custom_margin_phone=&#8221;|||0px|false|false&#8221; custom_margin_last_edited=&#8221;on|phone&#8221; custom_padding=&#8221;|||25px|false|false&#8221; box_shadow_style=&#8221;preset2&#8243; box_shadow_spread=&#8221;-80px&#8221; locked=&#8221;off&#8221; box_shadow_spread__hover=&#8221;0px&#8221; box_shadow_spread__hover_enabled=&#8221;on&#8221;][\/et_pb_button][\/et_pb_column][\/et_pb_row][\/et_pb_section]\n","protected":false},"excerpt":{"rendered":"<p>POWER REDUNDANCY AND SEASON MODE SCRIPT INTRODUCTION This page will show you how to set up a script that will add or remove degrees from the set point based on which season is selected insdie a drop down menu (Summer \/ Winter). This script will take care eather of the current instant power, if the [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","inline_featured_image":false,"footnotes":""},"categories":[1,18],"tags":[],"class_list":["post-37697","post","type-post","status-publish","format-standard","hentry","category-all","category-configuration-software-en"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Power redundancy with setpoint Ilevia Support |<\/title>\n<meta name=\"description\" content=\"Script that will read the current instant power and set a value to a set point based on the season selected inside a drop down menu\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/support.ilevia.com\/en\/configuration-software-en\/power-redundancy-with-setpoint\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Filippo Amabilia\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/configuration-software-en\\\/power-redundancy-with-setpoint\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/configuration-software-en\\\/power-redundancy-with-setpoint\\\/\"},\"author\":{\"name\":\"Filippo Amabilia\",\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/#\\\/schema\\\/person\\\/08a8d13dee0bc9f160da55efe97b7959\"},\"headline\":\"Power redundancy with setpoint\",\"datePublished\":\"2021-06-21T16:21:12+00:00\",\"dateModified\":\"2021-06-24T08:07:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/configuration-software-en\\\/power-redundancy-with-setpoint\\\/\"},\"wordCount\":1268,\"publisher\":{\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/#organization\"},\"articleSection\":[\"All Archives\",\"Configuration Software\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/configuration-software-en\\\/power-redundancy-with-setpoint\\\/\",\"url\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/configuration-software-en\\\/power-redundancy-with-setpoint\\\/\",\"name\":\"Power redundancy with setpoint Ilevia Support |\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/#website\"},\"datePublished\":\"2021-06-21T16:21:12+00:00\",\"dateModified\":\"2021-06-24T08:07:04+00:00\",\"description\":\"Script that will read the current instant power and set a value to a set point based on the season selected inside a drop down menu\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/configuration-software-en\\\/power-redundancy-with-setpoint\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/support.ilevia.com\\\/en\\\/configuration-software-en\\\/power-redundancy-with-setpoint\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/configuration-software-en\\\/power-redundancy-with-setpoint\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Software Configurazione\",\"item\":\"https:\\\/\\\/support.ilevia.com\\\/it\\\/archivi\\\/software-configurazione\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Power redundancy with setpoint\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/\",\"name\":\"Ilevia Support\",\"description\":\"Assistance &amp; Technical Guides\",\"publisher\":{\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/#organization\",\"name\":\"Ilevia\",\"url\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"http:\\\/\\\/support.ilevia.com\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/ilevia.png\",\"contentUrl\":\"http:\\\/\\\/support.ilevia.com\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/ilevia.png\",\"width\":500,\"height\":500,\"caption\":\"Ilevia\"},\"image\":{\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/ileviaofficial\\\/\",\"https:\\\/\\\/www.instagram.com\\\/ilevia_official\\\/\",\"https:\\\/\\\/it.linkedin.com\\\/company\\\/ilevia\\\/\",\"https:\\\/\\\/www.youtube.com\\\/ilevia\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/#\\\/schema\\\/person\\\/08a8d13dee0bc9f160da55efe97b7959\",\"name\":\"Filippo Amabilia\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0e396093874891309dc46571e6eec478bc2a5080be4f76a70e1ca9deb9f99eec?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0e396093874891309dc46571e6eec478bc2a5080be4f76a70e1ca9deb9f99eec?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0e396093874891309dc46571e6eec478bc2a5080be4f76a70e1ca9deb9f99eec?s=96&d=mm&r=g\",\"caption\":\"Filippo Amabilia\"},\"url\":\"https:\\\/\\\/support.ilevia.com\\\/en\\\/author\\\/filippo-amabilia\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Power redundancy with setpoint Ilevia Support |","description":"Script that will read the current instant power and set a value to a set point based on the season selected inside a drop down menu","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/support.ilevia.com\/en\/configuration-software-en\/power-redundancy-with-setpoint\/","twitter_misc":{"Written by":"Filippo Amabilia","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/support.ilevia.com\/en\/configuration-software-en\/power-redundancy-with-setpoint\/#article","isPartOf":{"@id":"https:\/\/support.ilevia.com\/en\/configuration-software-en\/power-redundancy-with-setpoint\/"},"author":{"name":"Filippo Amabilia","@id":"https:\/\/support.ilevia.com\/en\/#\/schema\/person\/08a8d13dee0bc9f160da55efe97b7959"},"headline":"Power redundancy with setpoint","datePublished":"2021-06-21T16:21:12+00:00","dateModified":"2021-06-24T08:07:04+00:00","mainEntityOfPage":{"@id":"https:\/\/support.ilevia.com\/en\/configuration-software-en\/power-redundancy-with-setpoint\/"},"wordCount":1268,"publisher":{"@id":"https:\/\/support.ilevia.com\/en\/#organization"},"articleSection":["All Archives","Configuration Software"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/support.ilevia.com\/en\/configuration-software-en\/power-redundancy-with-setpoint\/","url":"https:\/\/support.ilevia.com\/en\/configuration-software-en\/power-redundancy-with-setpoint\/","name":"Power redundancy with setpoint Ilevia Support |","isPartOf":{"@id":"https:\/\/support.ilevia.com\/en\/#website"},"datePublished":"2021-06-21T16:21:12+00:00","dateModified":"2021-06-24T08:07:04+00:00","description":"Script that will read the current instant power and set a value to a set point based on the season selected inside a drop down menu","breadcrumb":{"@id":"https:\/\/support.ilevia.com\/en\/configuration-software-en\/power-redundancy-with-setpoint\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/support.ilevia.com\/en\/configuration-software-en\/power-redundancy-with-setpoint\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/support.ilevia.com\/en\/configuration-software-en\/power-redundancy-with-setpoint\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/support.ilevia.com\/en\/"},{"@type":"ListItem","position":2,"name":"Software Configurazione","item":"https:\/\/support.ilevia.com\/it\/archivi\/software-configurazione\/"},{"@type":"ListItem","position":3,"name":"Power redundancy with setpoint"}]},{"@type":"WebSite","@id":"https:\/\/support.ilevia.com\/en\/#website","url":"https:\/\/support.ilevia.com\/en\/","name":"Ilevia Support","description":"Assistance &amp; Technical Guides","publisher":{"@id":"https:\/\/support.ilevia.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/support.ilevia.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/support.ilevia.com\/en\/#organization","name":"Ilevia","url":"https:\/\/support.ilevia.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/support.ilevia.com\/en\/#\/schema\/logo\/image\/","url":"http:\/\/support.ilevia.com\/wp-content\/uploads\/2018\/12\/ilevia.png","contentUrl":"http:\/\/support.ilevia.com\/wp-content\/uploads\/2018\/12\/ilevia.png","width":500,"height":500,"caption":"Ilevia"},"image":{"@id":"https:\/\/support.ilevia.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ileviaofficial\/","https:\/\/www.instagram.com\/ilevia_official\/","https:\/\/it.linkedin.com\/company\/ilevia\/","https:\/\/www.youtube.com\/ilevia\/"]},{"@type":"Person","@id":"https:\/\/support.ilevia.com\/en\/#\/schema\/person\/08a8d13dee0bc9f160da55efe97b7959","name":"Filippo Amabilia","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0e396093874891309dc46571e6eec478bc2a5080be4f76a70e1ca9deb9f99eec?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0e396093874891309dc46571e6eec478bc2a5080be4f76a70e1ca9deb9f99eec?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0e396093874891309dc46571e6eec478bc2a5080be4f76a70e1ca9deb9f99eec?s=96&d=mm&r=g","caption":"Filippo Amabilia"},"url":"https:\/\/support.ilevia.com\/en\/author\/filippo-amabilia\/"}]}},"_links":{"self":[{"href":"https:\/\/support.ilevia.com\/en\/wp-json\/wp\/v2\/posts\/37697","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/support.ilevia.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/support.ilevia.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/support.ilevia.com\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/support.ilevia.com\/en\/wp-json\/wp\/v2\/comments?post=37697"}],"version-history":[{"count":72,"href":"https:\/\/support.ilevia.com\/en\/wp-json\/wp\/v2\/posts\/37697\/revisions"}],"predecessor-version":[{"id":37937,"href":"https:\/\/support.ilevia.com\/en\/wp-json\/wp\/v2\/posts\/37697\/revisions\/37937"}],"wp:attachment":[{"href":"https:\/\/support.ilevia.com\/en\/wp-json\/wp\/v2\/media?parent=37697"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/support.ilevia.com\/en\/wp-json\/wp\/v2\/categories?post=37697"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/support.ilevia.com\/en\/wp-json\/wp\/v2\/tags?post=37697"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}