Closed GoogleCodeExporter closed 8 years ago
Found a 2nd incandescent bulb; seems to work.
Original comment by mikep...@gmail.com
on 10 Feb 2014 at 5:48
Thanks, Mike!
All IR reports handling was completely broken. I fixed it and commit all
changes to svn. Can you test it?
PS: BIG thanks for this report.
Original comment by alexandr.serkov
on 10 Feb 2014 at 8:06
Of course! Works great; how do I go about enabling 12-byte reporting so I can
test that.
Original comment by mikep...@gmail.com
on 11 Feb 2014 at 6:35
Simple way to enable 12-byte mode:
in WiimoteIPPart.m in method - (NSSet*)allowedReportTypeSet; change:
if(allowedReportTypeSet == nil)
{
allowedReportTypeSet = [[NSSet alloc] initWithObjects:
[NSNumber numberWithInteger:WiimoteDeviceReportTypeButtonAndAccelerometerAndIR12BytesState],
[NSNumber numberWithInteger:WiimoteDeviceReportTypeButtonAndIR10BytesAndExtension9BytesState],
[NSNumber numberWithInteger:WiimoteDeviceReportTypeButtonAndAccelerometerAndIR10BytesAndExtension6Bytes],
nil];
}
to
if(allowedReportTypeSet == nil)
{
allowedReportTypeSet = [[NSSet alloc] initWithObjects:
[NSNumber numberWithInteger:WiimoteDeviceReportTypeButtonAndAccelerometerAndIR12BytesState],
nil];
}
or comment unnecessary modes.
Original comment by alexandr.serkov
on 11 Feb 2014 at 6:52
Original comment by alexandr.serkov
on 18 Apr 2014 at 8:29
Original issue reported on code.google.com by
mikep...@gmail.com
on 10 Feb 2014 at 5:34