YET another take on an alarm system

Hello, first I would like to be able to arm and desarm the alarm using basic automation like:
Arm- activate one automation if the door sensor is on then trigger alarm(condition, no one is home…)
Desarm- disable this automation.
Maybe I need to create some input_boolean ?
Also if I paste the Code from the git i get error when I use the ‘bwalarm’ it’s not recognize and I have to use ‘manual’ instead. In the alarm.yaml I can’t use the custom code and display the clock and météo.

Any kind help will be really helpfull.

Thanks

Yeah rebooted several times.

Here’s my alarm.yaml file

platform: bwalarm
name: House

code: !secret alarm_code #Code, should consist of one or more digits ie '6482' ensure your passcode is encapsulated by quotes
panic_code: !secret panic_code #[OPTIONAL] Panic Code should consist of one or more digits ie '9876' ensure your passcode is encapsulated by quotes, it needs to be different to your standard alarm code. This enables a special panic mode. This can be used under duress to deactivate the alarm which would appear to the unseeing eye as deactivated however a special attribute [panic_mode] listed under the alarm_control_panel.[identifier] will change to ACTIVE. This status could be used in your automations to send a notification to someone else police/spouse/sibling/neighbour that you are under duress. To deactive this mode arm then disarm your alarm in the usual manner. 

pending_time: 25 #Grace time in seconds to allow for exit and entry using Away mode
trigger_time: 600

alarm: automation.alarm_triggered
warning: automation.alarm_warning

##[OPTIONAL SETTINGS] 
clock: False  #[Optional] - False by default. True enables a clock in the center of the status bar
perimeter_mode: True #[Optional] - False by default. True enables perimeter mode, this could be known as 'Day Mode' i.e. only arm the doors whilst there is someone using all floors
weather: True #[Optional] - False by Default. Allows a weather summary to be displayed on the status bar. Dark Sky weather component must be enabled with the name sensor.dark_sky_summary
#settings: True #[NOT YET IMPLEMENTED, OPTIONAL] True/False. Enables a settings mode which allows you to define certain settings in the UI without the need to restart HA after certain config changes. This will be used for fluid settings such as enabling/disabling the screensaver mode once implmented. NOTE for this to work you will need to create a directory within your HA config directory named 'alarm_settings' this is where the settings file will be managed. Also ensure you have the appropriate permissions/ownership for the HA user to create/amend the file.
hide_sidebar: True #[OPTIONAL] - False by default. This is a security feature when enabled hides the HA sidebar when the alarm is armed. The sidebar re-appears when the alarm is disarmed.
#hide_all_sensors: True #[NOT YET IMPLEMENTED, Optional] - False by default. Setting this to True hides the 'All Sensors' box which displays every sensor when in disarmed mode.

##[PASSCODE RELATED]
#passcode_attempts: 3 #[Optional] Disabled if commented out. When a value equal or greater than 0 is set, the system will only allow the set amount of password attempts before timing out
#passcode_attempts_timeout: 30 #[Optional] Default 30 seconds. When set with the password attempts option the panel will timeout for the amount of seconds set if the password is entered incorrectly as per the password_attempts option. The system will then reset the allowed password attempts

##[MQTT RELATED]
#mqtt: True #[OPTIONAL] - False by default. Settings this to True will enable MQTT Mode. Uncomment options below to use See the README for guidance.
#override_code: True #[OPTIONAL] False by default. if true allows MQTT commands to disarm the alarm without a valid code.
#state_topic: 'home/alarm' #[OPTIONAL] The MQTT topic HA will publish state updates to.
#command_topic: 'home/alarm/set' #[OPTIONAL] The MQTT topic HA will subscribe to, to receive commands from a remote device to change the alarm state.
#qos: 0 #[OPTIONAL] The maximum QoS level for subscribing and publishing to MQTT messages. Default is 0.
#payload_disarm: "DISARM" #[OPTIONAL] The payload to disarm this Alarm Panel. Default is “DISARM”.
#payload_arm_home: "ARM_HOME" #[OPTIONAL] The payload to set armed-home mode on this Alarm Panel. Default is “ARM_HOME”.
#payload_arm_away: "ARM_AWAY" #[OPTIONAL] The payload to set armed-away mode on this Alarm Panel. Default is “ARM_AWAY”.
#payload_arm_night: "ARM_NIGHT" #[OPTIONAL] The payload to set armed-night mode on this Alarm Panel. Default is “ARM_NIGHT”.

############### COLOURS ###########  Use any HTML format
warning_colour: 'orange'
pending_colour: 'orange'
disarmed_colour: '#03A9F4'
armed_home_colour: 'black'
armed_away_colour: 'black'
triggered_colour: 'red'

############# SENSOR GROUPS ########################
##Sensors in this group tigger the alarm immediately
immediate:
  - binary_sensor.top_floor_multi_sensor_sensor
  - binary_sensor.lounge_multi_sensor_sensor
  - binary_sensor.toilet_window_sensor
  - binary_sensor.back_door_sensor
  - binary_sensor.lounge_doors_sensor
  - binary_sensor.kitchen_window_sensor

##Sensors in this group start the clock (pending_time) when tripped before the alarm is activated in 'Away' mode
delayed:
  - binary_sensor.kitchen_multi_sensor_sensor
  - binary_sensor.hall_multi_sensor_sensor
  - binary_sensor.toilet_multi_sensor_sensor
  - binary_sensor.front_door_sensor
  - binary_sensor.garage_door_sensor

##Same as notathome but hopefully the title is more self explanatory. Can still use notathome for backwards compatibility
##Note sensors can exist in more than one group notice top_floor appears in two groups
homemodeignore:
  - binary_sensor.top_floor_multi_sensor_sensor
##Use this group to automatically override the warning message on open sensors when setting 'away' mode. (I use this as I have a motion sensor at the front door)
override:
  - binary_sensor.hall_multi_sensor_sensor

##This group is special and only effects 'perimeter mode'. If perimeter_mode is enabled then any sensor in this group will trigger the alarm immediately if arm perimeter is set. There is no delayed group for this mode (unless requested as a feature of course!)
perimeter:
  - binary_sensor.toilet_window_sensor
  - binary_sensor.back_door_sensor
  - binary_sensor.lounge_doors_sensor
  - binary_sensor.kitchen_window_sensor
  - binary_sensor.front_door_sensor
  - binary_sensor.garage_door_sensor

##[OPTIONAL] - CUSTOM SENSOR STATUSES - These settings allow devices which are not natively supported by this panel to be used. 
##This is to be used when the state of the device is not recognised by the panel. Examples are provided below 
#custom_supported_statuses_on:
#  - 'running' #EXAMPLE
#  - flipped #EXAMPLE
#custom_supported_statuses_off:
#  - 'not_running' #EXAMPLE
#  - unflipped   #EXAMPLE

Still getting this error when trying to load the alarm panel:

https://DUCKDNS.org:8123/frontend/panels/alarm-cb02f431e4b5a91a700d9e76da46dfbb.html:234:19 Uncaught TypeError: Cannot read property ‘attributes’ of undefined

  1. did you put javascript_version: latest on frontend in configuration.yaml?
  2. on hide_sidebar: True in alarm.yaml please change to False first.
  3. after changing the first 2 step please restart reboot.
  4. On your computer or what you use to open HA. Do the refresh like ctrl+F5. on HA page.

So you use the MQTT Alarm? If so…

Can you try by open the option to see if it works
#override_code: True

1 Like

Done all that and still happening.

If possible please redownload and put all files in correct directory according from github.
Try with loading from basic setting and see if it load normally. Also every changes to be effected need to be restart.

I must have stuffed something up when copying the files, recopied everything and is working now. Thanks for all your help!

1 Like

you can create those automations easily like any other automation with the action being something like this example for auto disarm (not real code)

action:
  - service: alarm_control_panel.alarm_disarm
    entity_id: alarm_control_panel.house
    data:
      code: 9999

check that you used raw copy of py files

1 Like

Further with the automation to activate or deactivated the alarm. You also can use script so in your automation don’t show the password.

how would that hide the password? I haven’t done much with scripts as yet.

in alarm.yaml you can use serect.
in automation. you use script to run the alarm arm or disarm. or directly in automation
action:

  • service: alarm_control_panel.alarm_disarm
    data:
    entity_id: alarm_control_panel.ha_alarm
    code: !secret alarm_code

or from script see from post #421

so me above code could be used but replacing the actual password with a reference to the secrets file…?

yes can put in automation.

I use script due to voice command. to enable the script to arm or disarm.

dear all, i’m very new to HA and now i’m trying to use this alarm system. I have followed th instruction for the installation but when I clic to the panel I get this error in logfile. Someone can help me?

2018-02-14 14:57:04 ERROR (MainThread) [frontend.js.latest.201801300] data:text/javascript;charset=utf-8,%0A%09function%20enableSidebar()%7B%7D%0A%09function%20disableSidebar()%7B%7D%0A%0A%09Polymer(%7B%0A%09%09is%3A%20’ha-panel-alarm’%2C%0A%09%09created()%20%7B%0A%09%09%7D%2C%0A%09%09attached()%20%7B%0A%09%09%09var%20script%20%3D%20document.createElement(‘script’)%3B%0A%09%09%09script.setAttribute(‘src’%2C%20’%2Flocal%2Falarm%2Falarm_scripts.js’)%3B%0A%09%09%09document.body.appendChild(script)%3B%0A%09%09%7D%2C%0A%09%09ready()%20%7B%0A%09%09%09if%20(this.alarm.attributes.clock)%20%7B%0A%09%09%09%09this.updateTime()%3B%0A%09%09%09%7D%0A%09%09%09if%20(this.alarm.attributes.weather)%20%7B%0A%09%09%09%09this.getWeather()%3B%0A%09%09%09%7D%0A%20%20%20%20%20%20%2F%2Fif%20(this.screensaver)%7B%0A%20%20%20%20%20%20%2F%2F%20%20%20%20%20%09%20this.setupEyeCandy()%3B%0A%20%20%20%20%20%20%2F%2F%20%20%20%20%20%7D%0A%20%20%7D%2C%0A%20%20properties%3A%20%7B%0A%20%20%20%20%20%20%2F%2F%20things%20that%20appear%20in%20all%20the%20other%20panels%20%0A%20%20%20%20%20%20hass%3A%20%20%20%20%20%7B%20type%3A%20Object%20%7D%2C%0A%20%20%20%20%20%20panel%3A%20%20%20%20%7B%20type%3A%20Object%20%7D%2C%0A%20%20%20%20%20%20narrow%3A%20%20%20%7B%20type%3A%20Boolean%2C%20value%3A%20false%20%7D%2C%0A%20%20%20%20%20%20showMenu%3A%20%7B%20type%3A%20Boolean%2C%20value%3A%20false%20%7D%2C%0A%20%20%20%20%20%20%2F%2F%20things%20specific%20to%20this%20alarm%20panel%0A%20%20%20%20%20%20alarm%3A%20%20%20%20%20%20%7B%20type%3A%20Object%2C%20observer%3A%20’monitorAlarm’%20%7D%2C%0A%20%20%20%20%20%20immediate%3A%20%20%7B%20type%3A%20Array%2C%20computed%3A%20’computeSensors(hass%2C%20alarm.attributes.immediate)’%20%7D%2C%0A%20%20%20%20%20%20delayed%3A%20%20%20%20%7B%20type%3A%20Array%2C%20computed%3A%20’computeSensors(hass%2C%20alarm.attributes.delayed)’%20%7D%2C%0A%20%20%20%20%20%20ignored%3A%20%20%20%20%7B%20type%3A%20Array%2C%20computed%3A%20’computeSensors(hass%2C%20alarm.attributes.ignored)’%20%7D%2C%0A%20%20%20%20%20%20perimeter%3A%20%20%7B%20type%3A%20Array%2C%20computed%3A%20’computeSensors(hass%2C%20alarm.attributes.perimeter)’%20%7D%2C%0A%20%20%20%20%20%20allsensors%3A%20%7B%20type%3A%20Array%2C%20computed%3A%20’computeSensors(hass%2C%20alarm.attributes.allsensors)’%7D%2C%0A%20%20%20%20%20%20overrideSensors%3A%20%7B%20type%3A%20Array%2C%20computed%3A%20’computeSensors(hass%2C%20alarm.attributes.override)’%20%7D%2C%0A%20%20%20%20%20%20weather%3A%09%20%20%7B%20type%3A%20String%20%7D%2C%0A%20%20%20%20%20%20temp%3A%09%20%20%7B%20type%3A%20String%20%7D%2C%0A%20%20%20%20%20%20code%3A%20%20%20%20%20%20%20%7B%20type%3A%20String%2C%20value%3A%20’’%20%7D%2C%0A%20%20%20%20%20%20opencount%3A%20%20%7B%20type%3A%20Number%2C%20value%3A%200%20%7D%2C%0A%20%20%20%20%20%20timeoutID%3A%20%20%7B%20type%3A%20Number%20%7D%2C%0A%20%20%20%20%20%20hours%3A%20%20%20%20%20%20%7B%20type%3A%20String%2C%20value%3A%20’%3F%3F’%20%7D%2C%0A%20%20%20%20%20%20minutes%3A%20%20%20%20%7B%20type%3A%20String%2C%20value%3A%20’%3F%3F’%20%7D%2C%0A%20%20%20%20%20%20%2F%2F%20%20%20%20%20meridiem%3A%20%20%20%7B%20type%3A%20String%2C%20value%3A%20’%3FM’%20%7D%2C%0A%20%20%20%20%20%20%2F%2F%20Hold%20our%20unobservers%0A%20%20%20%20%20%20cleanup%3A%20%20%20%20%7B%20type%3A%20Array%2C%20value%3A%20%5B%5D%20%7D%2C%0A%20%20%20%20%20%20attemptedArm%3A%20%20%20%7B%20type%3A%20Boolean%2C%20value%3A%20false%20%7D%2C%20%0A%20%20%20%20%20%20screensaver%3A%20%20%20%20%7B%20type%3A%20Boolean%2C%20value%3A%20false%20%7D%2C%0A%20%20%20%20%20%20settings%3A%09%20%20%20%20%20%20%7B%20type%3A%20Boolean%2C%20value%3A%20false%20%7D%2C%0A%0A%20%20%20%20%20%20%2F%2FENUMS%20USED%20FOR%20CSS%20CLASS%20SELECTION%0A%20%20%20%20%20%20panel_locked%3A%20%20%7B%20type%3A%20Boolean%2C%20value%3A%20false%20%7D%2C%0A%20%20%7D%2C%0A%0A%20%20monitorAlarm%3A%20function()%20%7B%0A%20%20%09%2F%2F-----HIDE%20THE%20SIDE%20BAR%20FROM%20THE%20SCREEN-------------%0A%20%20%09if%20(this.alarm.attributes.hide_sidebar%20%3D%3D%20true)%20Polymer.dom(this.root).querySelector(’%23disableSidebar’).click()%3B%0A%0A%20%20%09var%20countdownTimerDiv%20%3D%20Polymer.dom(this.root).querySelector(’%23countdown360_countdown’)%3B%0A%20%20%09if%20(countdownTimerDiv)%20countdownTimerDiv.remove()%3B%0A%0A%20%20%09this.updateStyles(%7B’–countdown-timer-display’%3A%20’none’%7D)%3B%0A%20%20%09this.updateStyles(%7B’–time-display’%3A%20’initial’%7D)%3B%0A%20%20%09if%20(this.alarm.state%20%3D%3D%20’disarmed’)%20%7B%0A%20%20%09%09if%20(this.attemptedArm%20%3D%3D%20true)%20%7B%20this.resetButtons()%3B%20%7D%0A%20%20%09%09%2F%2F-----DISPLAY%20THE%20SIDE%20BAR%20ON%20THE%20SCREEN-------------%0A%20%20%09%09if%20(this.alarm.attributes.hide_sidebar%20%3D%3D%20true)%20Polymer.dom(this.root).querySelector(’%23enableSidebar’).click()%3B%0A%20%20%09%09this.updateStyles(%7B’–primary-color’%3A%20this.alarm.attributes.disarmed_colour%7D)%3B%0A%20%20%09%7D%20else%20if%20(this.alarm.state%20%3D%3D%20’armed_away’)%20%7B%0A%20%20%09%09this.updateStyles(%7B’–primary-color’%3A%20this.alarm.attributes.armed_away_colour%7D)%3B%0A%20%20%09%7D%20else%20if%20(%20this.alarm.state%20%3D%3D%20’armed_home’)%20%7B%0A%20%20%09%09this.updateStyles(%7B’–primary-color’%3A%20this.alarm.attributes.armed_home_colour%7D)%3B%0A%20%20%09%7D%20else%20if%20(%20this.alarm.state%20%3D%3D%20’armed_perimeter’)%20%7B%0A%09%20%20%20%20this.updateStyles(%7B’–primary-color’%3A%20this.alarm.attributes.armed_home_colour%7D)%3B%20%2F%2FSORT%20THIS%20OUT%0A%09%7D%20else%20if%20(this.alarm.state%20%3D%3D%20’pending’)%20%7B%0A%09%09this.updateStyles(%7B’–primary-color’%3A%20this.alarm.attributes.pending_colour%7D)%3B%0A%09%09this.updateStyles(%7B’–countdown-timer-display’%3A%20’initial’%7D)%3B%0A%09%09this.updateStyles(%7B’–time-display’%3A%20’none’%7D)%3B%0A%09%09this.loadTimer(false%2C%20this.alarm.attributes.countdown_time)%3B%0A%09%7D%20else%20if%20(this.alarm.state%20%3D%3D%20’warning’)%20%7B%0A%09%09this.updateStyles(%7B’–primary-color’%3A%20this.alarm.attributes.warning_colour%7D)%3B%0A%09%09this.updateStyles(%7B’–countdown-timer-display’%3A%20’initial’%7D)%3B%0A%09%09this.updateStyles(%7B’–time-display’%3A%20’none’%7D)%3B%0A%09%09this.loadTimer(false%2C%20this.alarm.attributes.countdown_time)%3B%0A%09%7D%20else%20if%20(this.alarm.state%20%3D%3D%20’triggered’)%20%7B%0A%09%09this.updateStyles(%7B’–primary-color’%3A%20this.alarm.attributes.triggered_colour%7D)%3B%0A%09%7D%0A%09if%20(this.alarm.attributes.panel_locked%20%3D%3D%20true)%20%7B%0A%09%09console.log(%22Panel%20locked%22)%3B%0A%09%09this.updateStyles(%7B’–primary-color’%3A%20’grey’%7D)%3B%20%2F%2F%5BTODO%5D%20Implement%20panel%20locked%20colour%20-%20this.alarm.attributes.panel_locked_colour%7D)%3B%0A%09%09this.updateStyles(%7B’–countdown-timer-display’%3A%20’initial’%7D)%3B%0A%09%09this.updateStyles(%7B’–time-display’%3A%20’none’%7D)%3B%0A%09%09this.loadTimer(true%2C%20this.alarm.attributes.passcode_attempt_timeout)%3B%0A%09%09this.panel_locked%20%3D%20true%3B%0A%09%7D%0A%09else%20this.panel_locked%20%3D%20false%3B%0A%0A%20%20%7D%2C%0A%20%20getClass%3A%20function(cssClass)%20%7B%0A%20%20%09return%20cssClass%20%3F%20%22slideup%22%20%3A%20%22slidedown%22%3B%0A%20%20%7D%2C%0A%20%20loadTimer%3A%20function(locked%2C%20time)%20%7B%0A%0A%20%20%09var%20startColour%20%3D%20’%238ac575’%3B%0A%20%20%09var%20middleColour%20%3D%20’orange’%3B%0A%20%20%09var%20endColour%20%3D%20’red’%0A%0A%20%20%09if%20(locked%20%3D%3D%20true)%20startColour%20%3D%20middleColour%20%3D%20endColour%20%3D%20’red’%3B%0A%0A%20%20%09var%20countdownDiv%20%3D%20Polymer.dom(this.root).querySelector(’%23countdown’)%3B%0A%20%20%09%24(countdownDiv).unbind().removeData()%3B%0A%20%20%09var%20countdown%20%3D%20%24(countdownDiv).countdown360(%0A%20%20%09%7B%0A%20%20%09%09radius%20%20%20%20%20%20%3A%2050%2C%0A%20%20%09%09fontColor%20%20%20%3A%20’%23FFFFFF’%2C%0A%20%20%09%09autostart%20%20%20%3A%20false%2C%0A%20%20%09%09label%20%20%20%20%20%20%20%3A%20false%2C%0A%20%20%09%09smooth%20%20%20%20%20%20%3A%20true%2C%0A%20%20%09%09seconds%20%20%20%20%20%3A%20time%2C%0A%20%20%09%09fillStyle_0to50%3A%20startColour%2C%0A%20%20%09%09fillStyle_50to75%3A%20middleColour%2C%0A%20%20%09%09fillStyle_75to100%3A%20endColour%0A%09%7D)%3B%0A%20%20%09countdown.start()%3B%0A%20%20%7D%2C%0A%20%20%20%2F%2F--------------------------------------------------------------%2F%2F%0A%20%20%20%2F%2F-----------------EYE%20CANDY%20FUNCTION---------------------------%2F%2F%0A%20%20%20%2F%2F--------------------------------------------------------------%2F%2F%0A%20%20%20setupEyeCandy%3A%20function%20()%20%7B%0A%20%20%20%09this.addEventListener(%22mousemove%22%2C%20this.resetTimer)%3B%0A%20%20%20%09this.addEventListener(%22mousedown%22%2C%20this.resetTimer)%3B%0A%20%20%20%09this.addEventListener(%22keypress%22%2C%20this.resetTimer)%3B%0A%20%20%20%09this.addEventListener(%22DOMMouseScroll%22%2C%20this.resetTimer)%3B%0A%20%20%20%09this.addEventListener(%22mousewheel%22%2C%20this.resetTimer)%3B%0A%20%20%20%09this.addEventListener(%22touchmove%22%2C%20this.resetTimer)%3B%0A%20%20%20%09this.addEventListener(%22MSPointerMove%22%2C%20this.resetTimer)%3B%0A%0A%20%20%20%09this.startTimer()%3B%0A%20%20%20%7D%2C%0A%20%20%20startTimer%3A%20function()%20%7B%0A%20%20%20%09this.timeoutID%20%3D%20this.async(this.goInactive%2C8000)%3B%0A%20%20%20%7D%2C%0A%20%20%20resetTimer%3A%20function%20()%20%7B%0A%20%20%20%09clearTimeout(this.timeoutID)%3B%0A%20%20%20%09this.goActive()%3B%0A%20%20%20%7D%2C%0A%20%20%20goActive%3A%20function()%20%7B%0A%20%20%20%09var%20alarmContent%20%3D%20Polymer.dom(this.root).querySelector(’%23alarm-panel’)%3B%0A%20%20%20%09alarmContent.classList.remove(‘remove’)%3B%0A%20%20%20%09var%20eyecandyContent%20%3D%20Polymer.dom(this.root).querySelector(’%23eyecandy’)%3B%0A%20%20%20%09eyecandyContent.classList.add(‘remove’)%3B%0A%20%20%20%09var%20appHeader%20%3D%20Polymer.dom(this.root).querySelector(‘app-header-layout’)%3B%0A%20%20%20%09appHeader.classList.remove(‘hide-bar’)%3B%0A%20%20%20%20%20%20%2F%2Fvar%20settingsContent%20%3D%20Polymer.dom(this.root).querySelector(’%23settings’)%3B%0A%20%20%20%20%20%20%2F%2FsettingsContent.classList.add(‘remove’)%3B%0A%20%20%20%20this.startTimer()%3B%0A%20%20%7D%2C%0A%20%20goInactive%3A%20function%20()%20%7B%0A%20%20%09var%20alarmContent%20%3D%20Polymer.dom(this.root).querySelector(’%23alarm-panel’)%3B%0A%20%20%09alarmContent.classList.add(‘remove’)%3B%0A%20%20%09var%20eyecandyContent%20%3D%20Polymer.dom(this.root).querySelector(’%23eyecandy’)%3B%0A%20%20%09eyecandyContent.classList.remove(‘remove’)%3B%0A%20%20%09var%20appHeader%20%3D%20Polymer.dom(this.root).querySelector(‘app-header-layout’)%3B%0A%20%20%09appHeader.classList.add(‘hide-bar’)%3B%0A%20%20%20%20%20%20%2F%2Fvar%20settingsContent%20%3D%20Polymer.dom(this.root).querySelector(’%23settings’)%3B%0A%20%20%20%20%20%20%2F%2FsettingsContent.classList.remove(‘remove’)%3B%0A%20%20%7D%2C%0A%20%20%20%2F%2F--------------------------------------------------------------%2F%2F%0A%20%20%20%2F%2F-----------------EYE%20CANDY%20FUNCTION---------------------------%2F%2F%0A%20%20%20%2F%2F--------------------------------------------------------------%2F%2F%0A%20%20%20getWeather%3A%20function()%20%7B%0A%20%20%20%09this.weather%20%3D%20this.hass.states%5B’sensor.dark_sky_summary’%5D%3B%0A%20%20%20%09this.temp%20%3D%20Math.ceil((this.hass.states%5B’sensor.dark_sky_apparent_temperature’%5D).state)%3B%0A%20%20%20%7D%2C%0A%20%20%20toggleSettings()%20%7B%0A%20%20%20%09var%20settingsContent%20%3D%20Polymer.dom(this.root).querySelector(’%23settings’)%3B%0A%20%20%20%09var%20alarmContent%20%3D%20Polymer.dom(this.root).querySelector(’%23alarm-panel’)%3B%0A%20%20%20%09if%20(this.settings)%20%7B%0A%20%20%20%09%09alarmContent.classList.remove(‘remove’)%3B%0A%20%20%20%09%09settingsContent.classList.add(‘remove’)%3B%0A%20%20%20%09%09this.settings%20%3D%20false%3B%0A%20%20%20%09%7D%20else%20%7B%0A%20%20%20%09%09alarmContent.classList.add(‘remove’)%3B%0A%20%20%20%09%09settingsContent.classList.remove(‘remove’)%3B%0A%20%20%20%09%09this.settings%20%3D%20true%3B%0A%20%20%20%09%7D%0A%20%20%20%7D%2C%0A%20%20%20updateTime%3A%20function()%20%7B%0A%20%20%20%09var%20timeNow%20%3D%20new%20Date()%3B%0A%20%20%20%09var%20hours%20%20%20%3D%20timeNow.getHours()%3B%0A%20%20%20%09var%20minutes%20%3D%20timeNow.getMinutes()%3B%0A%20%20%20%20%20%20%2F%2F%20var%20meridiem%20%3D%20(hours%20%3E%3D%2012)%20%3F%20%22%20P.M%22%20%3A%20%22%20A.M%22%3B%0A%20%20%20%20%20%20this.hours%20%3D%20(%220%22%20%2B%20hours).slice(-2)%3B%0A%20%20%20%20%20%20this.minutes%20%3D%20(%220%22%20%2B%20minutes).slice(-2)%3B%0A%20%20%20%20%20%20%2F%2F%20%20this.meridiem%20%3D%20meridiem%3B%0A%20%20%20%20%20%20this.async(this.updateTime%2C1000)%3B%0A%20%20%7D%2C%0A%20%20%20%2F%2F%20Polymer%20observers%20definition%0A%20%20%20observers%3A%20%5B%20’onPanelUpdate(hass%2C%20panel)’%20%5D%2C%0A%20%20%20wtf%3A%20function%20(e)%20%7B%20debugger%3B%20return%20e%3B%20%7D%2C%0A%20%20%20%2F%2F%20Helpers%20to%20figure%20out%20what%20to%20display%20%0A%20%20%20isdisarmed%3A%20%20function(alarm)%20%7B%20return%20alarm.state%20%3D%3D%20%22disarmed%22%3B%20%7D%2C%0A%20%20%20isperimeter%3A%20%20function(alarm)%20%7B%20return%20alarm.state%20%3D%3D%20%22armed_perimeter%22%3B%20%7D%2C%0A%20%20%20issecure%3A%20%20%20%20function(all)%20%20%20%7B%20return%20this.opensensors(alarm%2C%20all).length%20%3D%3D%200%3B%20%7D%2C%0A%20%20%20opensensors%3A%20function(alarm%2C%20all)%20%20%20%7B%20%0A%20%20%20%09if%20(all%20%3D%3D%20false)%20%7B%0A%20%20%20%09%09return%20false%3B%0A%20%20%20%09%7D%20else%20%7B%0A%20%20%20%09%09ret%20%3D%20all.filter(function%20(e)%20%7B%20return%20alarm.attributes.supported_statuses_on.indexOf(e.state.toLowerCase())%20%3E%20-1%3B%20%7D)%3B%20%0A%20%20%20%09%09this.opencount%20%3D%20ret.length%3B%0A%20%20%20%09%09return%20ret%3B%0A%20%20%20%09%7D%0A%20%20%20%7D%2C%0A%20%20%20closedsensors%3A%20function(alarm%2C%20all)%20%20%20%7B%0A%20%20%20%09if%20(all%20%3D%3D%20false)%20%7B%0A%20%20%20%09%09return%20false%3B%0A%20%20%20%09%7D%20else%20%7B%0A%20%20%20%09%09ret%20%3D%20all.filter(function%20(e)%20%7B%20return%20alarm.attributes.supported_statuses_off.indexOf(e.state.toLowerCase())%20%3E%20-1%3B%20%7D)%3B%0A%20%20%20%09%09return%20ret%3B%0A%20%20%20%09%7D%0A%20%20%20%7D%2C%0A%20%20%20computeSensors%3A%20function(hass%2C%20ids)%20%7B%0A%20%20%20%09if%20(ids%20%3D%3D%20undefined)%20%7B%0A%09%20%2F%2F%20Control%20the%20exception%20when%20this.alarm%20is%20not%20ready%0A%09%20return%20false%3B%0A%09%7D%20else%20%7B%0A%09%09return%20ids.map(function%20(key)%20%7B%20return%20hass.states%5Bkey%5D%3B%20%7D).filter(function%20(e)%20%7B%20return%20e%20!%3D%20undefined%3B%20%7D)%3B%0A%09%7D%0A%7D%2C%0AcomputeIcon%3A%20function%20(state)%20%7B%0A%09switch%20(state)%20%7B%0A%09%09case%20’disarmed’%3A%20%20%20%20%20%20%20%20return%20’mdi%3Ashield-outline’%3B%0A%09%09case%20’armed_away’%3A%20%20%20%20%20%20return%20’mdi%3Asecurity-home’%3B%0A%09%09case%20’armed_home’%3A%20%20%20%20%20%20return%20’mdi%3Asecurity-home’%3B%0A%09%09case%20’pending’%3A%20%20%20%20%20%20%20%20%20return%20’mdi%3Awalk’%3B%0A%09%09case%20’warning’%3A%20%20%20%20%20%20%20%20%20return%20’mdi%3Arun’%3B%0A%09%09case%20’triggered’%3A%20%20%20%20%20%20%20return%20’mdi%3Aalert-circle’%3B%0A%09%09case%20’armed_perimeter’%3A%20return%20’mdi%3Asecurity-home’%3B%0A%09%7D%0A%09return%20’mdi%3Ahelp’%3B%0A%7D%2C%0AcomputeLabel%3A%20function%20(state)%20%7B%0A%09switch%20(state)%20%7B%0A%09%09case%20’disarmed’%3A%20%20%20%09%20return%20’disarmed’%3B%0A%09%09case%20’armed_away’%3A%20%09%20return%20’away’%3B%0A%09%09case%20’armed_home’%3A%20%09%20return%20’home’%3B%0A%09%09case%20’pending’%3A%20%20%20%20%09%20return%20’leave’%3B%0A%09%09case%20’warning’%3A%20%20%20%20%09%20return%20’warning’%3B%0A%09%09case%20’triggered’%3A%20%20%09%20return%20’triggered’%3B%0A%09%09case%20’armed_perimeter’%3A%20return%20’perimeter’%3B%0A%09%7D%0A%09return%20state%3B%0A%7D%2C%0A%20%20%20%2F%2F%20Responding%20to%20user%20inputs%0A%20%20%20callcode%3A%20function(ev)%20%7B%0A%20%20%20%09ev.stopPropagation()%3B%0A%20%20%20%09var%20digit%20%3D%20ev.target.getAttribute(‘data-digit’)%3B%0A%20%20%20%09this.code%20%3D%20this.code%20%2B%20digit%3B%0A%20%20%20%20%20%20%2F%2Fconsole.log(this.code)%3B%0A%20%20%7D%2C%0A%20%20callclearcode%3A%20function(ev)%20%7B%0A%20%20%09ev.stopPropagation()%3B%0A%20%20%09this.code%20%3D%20’’%3B%0A%20%20%20%20%20%20%2F%2Fconsole.log(‘Code%20Cleared%3A%20’%20%2B%20this.code)%3B%0A%20%20%7D%2C%0A%20%20callService%3A%20function(ev)%20%7B%0A%20%20%09ev.stopPropagation()%3B%0A%20%20%09var%20call%20%3D%20ev.target.getAttribute(‘data-call’)%3B%0A%20%20%20%20%20%20if%20(call%20%3D%3D%20’cancel’)%20%7B%20%2F%2Fcancel%20alarm%20set%20and%20return%20page%20to%20default%20settings%0A%20%20%20%20%20%20%09this.resetButtons()%3B%0A%20%20%20%20%20%20%7D%20else%20if%20(ev.target.getAttribute(‘data-override’))%20%7B%20%2F%2FOverride%20of%20open%20sensors%20has%20been%20pressed%20so%20activate%20alarm%0A%20%20%20%20%20%20%09this.hass.callService(‘alarm_control_panel’%2C%20call%2C%20%7B’entity_id’%3A%20this.alarm.entityId%2C%20’code’%3A%20this.code%7D)%3B%0A%20%20%20%20%20%20%7D%20else%20if%20((call%20%3D%3D%20’alarm_arm_home’%20%7C%7C%20call%20%3D%3D%20’alarm_arm_away’%20%7C%7C%20call%20%3D%3D%20’alarm_arm_night’)%20%26%26%20this.checkOpenSensors(call))%20%7B%20%2F%2FCheck%20if%20trying%20to%20activate%20home%20with%20open%20sensors.%20If%20so%20ping%20the%20warning%20message%0A%20%20%20%20%20%20%09console.log(‘WARNING%20open%20sensors’)%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%20%2F%2FNo%20open%20sensors%20or%20another%20service%20call%0A%20%20%20%20%20%20%09this.hass.callService(‘alarm_control_panel’%2C%20call%2C%20%7B’entity_id’%3A%20this.alarm.entityId%2C%20’code’%3A%20this.code%7D)%3B%0A%20%20%20%20%20%20%09this.code%20%3D%20’’%3B%0A%20%20%20%20%20%20%7D%0A%20%20%7D%2C%0A%20%20checkOpenSensors%3A%20function(call)%20%7B%0A%20%20%20%20%20%20if%20(this.opencount%20%3D%3D%200)%20return%20false%3B%20%2F%2Fcheck%20to%20see%20how%20many%20open%20sensors%20there%20are%2C%20if%20none%20arm%20alarm%0A%0A%20%20%20%20%20%20for%20(var%20sensor%20in%20this.allsensors)%20%7B%20%2F%2Fcheck%20to%20see%20if%20the%20open%20sensor%20is%20one%20to%20ignore%2C%20if%20so%20arm%20alarm%0A%09%20%2F%2Fis%20it%20open%3F%0A%09%20if%20(%5B’on’%2C%20’open’%2C%20’true’%2C%20’detected’%2C%20’unlocked’%5D.indexOf(this.allsensors%5Bsensor%5D.state.toLowerCase())%20%3E%20-1)%20%7B%20%2F%2Fyes%0A%09%20%20%20%20%2F%2Fis%20it%20in%20the%20override%20list%3F%0A%09%20%20%20%20if%20(this.overrideSensors.indexOf(this.allsensors%5Bsensor%5D)%20%3D%3D%20-1)%20%7B%20%2F%2FNo%3A%20return%20so%20display%20message%0A%09%20%20%20%20%20%20%20this.attemptedArm%20%3D%20true%3B%20%2F%2Fdisplay%20the%20warning%20message%20and%20shake%0A%0A%09%20%20%20%20%20%20%20var%20btnArmHome%20%20%20%20%20%20%3D%20Polymer.dom(this.root).querySelector(’%23arm-home’)%3B%0A%09%20%20%20%20%20%20%20var%20btnArmAway%20%20%20%20%20%20%3D%20Polymer.dom(this.root).querySelector(’%23arm-away’)%3B%0A%0A%09%20%20%20%20%20%20%20if%20(this.alarm.attributes.perimeter_mode)%20%7B%0A%09%20%20%20%20%20%20%20%09var%20btnArmPerimeter%20%3D%20Polymer.dom(this.root).querySelector(’%23arm-perimeter’)%3B%0A%09%20%20%20%20%20%20%20%09btnArmPerimeter.classList.add(‘remove’)%3B%0A%09%20%20%20%20%20%20%20%7D%0A%09%20%20%20%20%20%20%20btnArmHome.classList.add(‘big’)%3B%0A%09%20%20%20%20%20%20%20btnArmAway.classList.add(‘little’)%3B%0A%0A%09%20%20%20%20%20%20%20this.override%20%3D%20document.createAttribute(%22data-override%22)%3B%0A%09%20%20%20%20%20%20%20this.override.value%20%3D%20%22true%22%3B%0A%09%20%20%20%20%20%20%20btnArmHome.setAttributeNode(this.override)%3B%0A%0A%09%20%20%20%20%20%20%20var%20arm_mode%20%3D%20document.createAttribute(%22data-call%22)%3B%0A%09%20%20%20%20%20%20%20arm_mode.value%20%3D%20call%3B%0A%09%20%20%20%20%20%20%20btnArmHome.setAttributeNode(arm_mode)%3B%0A%0A%09%20%20%20%20%20%20%20var%20arm_mode2%20%3D%20document.createAttribute(%22data-call%22)%3B%0A%09%20%20%20%20%20%20%20arm_mode2.value%20%3D%20’cancel’%3B%0A%09%20%20%20%20%20%20%20btnArmAway.setAttributeNode(arm_mode2)%3B%0A%09%20%20%20%20%20%20%20btnArmHome.innerHTML%20%3D%20’Override%20Sensors%20and%20Arm%20Alarm’%3B%0A%09%20%20%20%20%20%20%20btnArmAway.innerHTML%20%3D%20’Cancel%20Arm’%3B%0A%0A%09%20%20%20%20%20%20%20var%20pageContent%20%3D%20Polymer.dom(this.root).querySelector(’.content’)%3B%0A%09%20%20%20%20%20%20%20pageContent.classList.add(‘shake’)%3B%0A%0A%09%20%20%20%20%20%20%20return%20true%3B%0A%0A%09%20%20%20%7D%0A%09%7D%20%20%20%20%20%20%20%20%20%20%0A%7D%0A%7D%2C%0AresetButtons%3A%20function()%20%7B%0A%09this.attemptedArm%20%3D%20false%3B%0A%0A%09var%20pageContent%20%3D%20Polymer.dom(this.root).querySelector(’.content’)%3B%0A%09pageContent.classList.remove(‘shake’)%3B%0A%0A%09var%20btnArmHome%20%20%20%20%20%20%3D%20Polymer.dom(this.root).querySelector(’%23arm-home’)%3B%0A%09var%20btnArmAway%20%20%20%20%20%20%3D%20Polymer.dom(this.root).querySelector(’%23arm-away’)%3B%0A%09if%20(this.alarm.attributes.perimeter_mode)%20%7B%0A%09%09var%20btnArmPerimeter%20%3D%20Polymer.dom(this.root).querySelector(’%23arm-perimeter’)%3B%0A%09%09btnArmPerimeter.classList.remove(‘remove’)%3B%0A%09%7D%0A%09btnArmHome.classList.remove(‘big’)%3B%0A%09btnArmAway.classList.remove(‘little’)%3B%0A%0A%20%20%20%20%20%20%2F%2Fvar%20override%20%3D%20document.createAttribute(%22data-override%22)%3B%0A%20%20%20%20%20%20btnArmHome.removeAttributeNode(this.override)%3B%0A%0A%20%20%20%20%20%20var%20arm_mode%20%3D%20document.createAttribute(%22data-call%22)%3B%0A%20%20%20%20%20%20arm_mode.value%20%3D%20’alarm_arm_home’%3B%0A%20%20%20%20%20%20btnArmHome.setAttributeNode(arm_mode)%3B%0A%0A%20%20%20%20%20%20var%20arm_mode2%20%3D%20document.createAttribute(%22data-call%22)%3B%0A%20%20%20%20%20%20arm_mode2.value%20%3D%20’alarm_arm_away’%3B%0A%20%20%20%20%20%20btnArmAway.setAttributeNode(arm_mode2)%3B%0A%0A%20%20%20%20%20%20btnArmHome.innerHTML%20%3D%20%22%3Ciron-icon%20icon%3D’mdi%3Alock-outline’%3E%3C%2Firon-icon%3E%26nbsp%3BHome%20Mode%22%3B%0A%20%20%20%20%20%20btnArmAway.innerHTML%20%3D%20%22%3Ciron-icon%20icon%3D’mdi%3Alock’%3E%3C%2Firon-icon%3E%26nbsp%3BAway%20Mode%22%3B%0A%0A%20%20%7D%2C%0A%20%20entityTapped%3A%20function%20(ev)%20%7B%0A%20%20%09ev.stopPropagation()%3B%0A%20%20%09var%20entityId%20%3D%20ev.target.getAttribute(‘data-entity’)%3B%0A%20%20%09this.fire(‘hass-more-info’%2C%20%7B%20entityId%3A%20entityId%20%7D)%3B%0A%20%20%7D%2C%0A%20%20%20%2F%2F%20Observer%3A%20polymer%20gaurantees%20that%20this%20won’t%20be%20called%20util%20hass%20and%20panel%20are%20both%20defined%0A%20%20%20onPanelUpdate%3A%20function(hass%2C%20panel)%20%7B%0A%20%20%20%20%20%20%2F%2Fconsole.log(‘onPanelUpdate’)%3B%0A%20%20%20%20%20%20this.alarm%20%3D%20hass.states%5Bpanel.config.alarmid%5D%3B%0A%20%20%20%20%20%20%2F%2Fconsole.log(‘Alarm%20is%20’%2C%20this.alarm)%3B%0A%20%20%7D%2C%0A%7D)%3B%0A%0A%2F%2F%23%20sourceURL%3Dhttps%3A%2F%2Fpiasohome.duckdns.org%3A8085%2Ffrontend%2Fpanels%2Falarm-551d7e7c60ab54f186897f3044548724.html.js%0A:0:0 Script error

Thank you! That worked. It just clicked, I recall reading earlier in the thread from @thanksmister that the app will not pass the code to HASS via MQTT. However until you mentioned it I didn’t think to uncomment that section. So essentially the app verifies the specified code within the app, and then passes the disarm command without the code? Is that correct?

The part about the application not passing the code is correct. Currently the HASS MQTT alarm components do not accept code parameters. However, you can set the code in the app to whatever code you wish.

1 Like

Thank you ‘sparkydave’ i managed to get it working and it’s great, love this feature.

Thanks.

I’m getting the below error while trying to load the Alarm Panel.

frontend%2Fpanels%2Falarm-551d7e7c60ab54f186897f3044548724.html.js%0A:0:0 Script error.

I tried enabling MQTT, redownloading the config with all default settings and still no dice.

Running 0.62.1

You need javascript_version: lastest in frontend platform (configuration.yaml)

thanks for the help. I had javascript_version: lastest in frontend platform already. I found now that I get this error only in Firefox, while in Chrome the panel is showed correctly.