This gem enables remote control functionality for Sharp Aquos televisions.
- Ensure the television is turned on.
- Hit the 'Menu' button on your remote.
- Navigate to 'Initial Setup'
- Navigate to 'Internet Setup'
- Navigate to 'Aquos Remote Control'
- Enable the Remote Control functionality.
- (optional) Go to Detailed Settings and set a username/password.
tv = SharpAquosRemoteControl.new("192.168.1.1")
tv.on
# => "OK"
tv.volume 15
# => "OK"
tv.volume?
# => "15"
tv.mute
# => "OK"
tv.muted?
# => true
tv.unmute
# => "OK"
tv.off
# => "OK"
This gem uses a TCP socket to send messages to your TV over wi-fi. The
messages that are sent can be found in the Sharp user manual. The manual
used specifically for this gem can be found in the repo:
sharp_manual.pdf
.
The MIT License (MIT)