Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plcbus support #529

Merged
merged 29 commits into from
Nov 15, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e18fd62
Created a module to interact with PLCBUS
Jun 16, 2015
039167c
Merge branch 'master' of https://github.com/hollie/misterhouse into p…
Jun 16, 2015
df05838
add pod documentation, small refactoring mainly rename stuff
Jun 17, 2015
5d8d18f
Created a module to interact with PLCBUS
Jun 16, 2015
0d0c653
add pod documentation, small refactoring mainly rename stuff
Jun 17, 2015
3c35b73
Change state after status_on/off was received
Jun 18, 2015
3afadc0
Merge branch 'plcbus-master' of https://github.com/tobser/misterhouse…
Jun 18, 2015
5204586
Fix check for replay in 3-Phase commands
Jun 19, 2015
5c46cf2
remove commented code
Jun 20, 2015
5a4e313
Create Category PLCBUS, add more Voice_Cmds
Jun 30, 2015
499432c
Merge branch 'master' of https://github.com/hollie/misterhouse into p…
Jul 13, 2015
93781ee
add missing ';'
Jul 13, 2015
c885a6c
fix getting phase flag
Jul 13, 2015
a3c7b37
improve logoutput, create seperate logfile for all plcbus message.
Jul 15, 2015
4ed6491
add mh.private.ini setting to enable plcbus logfile
Jul 15, 2015
54d8530
remove logspam
Jul 15, 2015
066907b
remove more logspam
Jul 15, 2015
a0ea1b4
actually remove command after completion or timeout
Jul 15, 2015
bc80702
reduce waite between commands, reduce logspam
Jul 15, 2015
0f9ac5c
fix logging of plcbus modules
Jul 15, 2015
6a56971
make logfile of plcbussrv configurable
Jul 16, 2015
c745888
Merge branch 'ia7' of https://github.com/hplato/misterhouse into plcb…
Jul 17, 2015
d8744af
fix return value of _check_current_command.
Jul 20, 2015
fb7412e
fix occupancy debug output
Jul 22, 2015
cb1e247
add voice command to scan homecodes A..P for present modules
Jul 22, 2015
de2df1a
Merge branch 'master' of https://github.com/hollie/misterhouse into p…
Jul 27, 2015
81dcf9a
Merge branch 'ia7' of https://github.com/hplato/misterhouse into plcb…
Jul 27, 2015
9db7e3a
Merge branch 'master' of https://github.com/hollie/misterhouse into p…
Jul 28, 2015
7f2511d
undo accidently commited change
Jul 28, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/Base_Item.pm
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ sub set
#&::print_log($self->get_object_name() . "::checking($p_state, $p_setby) -> $$obj{object_name}") if $main::Debug{occupancy};
if ( ( $obj->can('writable') and $obj->writable ) or
( ! $obj->can('writable') ) ) { #check for "settable" objects
&::print_log($self->get_object_name() . "::set($p_state, $$p_setby{object_name}) -> $$obj{object_name}") if $main::Debug{occupancy};
&::print_log($self->get_object_name() . "::set($p_state, $p_setby) -> $$obj{object_name}") if $main::Debug{occupancy};
# $obj->set($p_state,$p_setby,$p_response);
# don't attempt to set sensors
if (UNIVERSAL::isa($obj, 'X10_Sensor')) {
Expand Down
Loading