Thanks to visit codestin.com
Credit goes to github.com

Skip to content
/ toshiba-ac Public

Generator of IR codes for Toshiba RAS-B10BKVG-E air conditioner (and maybe other Tohsiba ones)

License

Notifications You must be signed in to change notification settings

k3a/toshiba-ac

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Generator of IR codes for Toshiba air conditioner

Tested and designed for RAS-B10BKVG-E (WH-UA01NE) but may work on other models as well.

IR uses Samsung-style protocol. It is possible to use Arduino IRremote library but Samsung IR implementation needs to be extended to be able to send and receive two 32bit uints and one 8bit uint.

Without a modification, IR library returns the first 32bits only which is F20D03FC in most cases.

Complete IR data format

first 32bits     second 32bits (payload)  payload checksum
0xAABBCCDD       0xEEEEEEEE               0xFF

AABB = always 0xF20D
CC = actual command
DD = xor checksum  (AA ^ BB ^ CC)

0xEEEEEEEE = state bits (various parts represent various state)

0xFF = xor checksum of all 4 bytes from 0xEEEEEEEE

Example implementation toshiba.go generates all three parts.

To run:

go run toshiba.go

You can change arguments of sendModeFanTemp() call and re-run it to see a different triple generated.

Contribution

You are welcome to test it on your Toshiba AC and report your findings back.

License

MIT

About

Generator of IR codes for Toshiba RAS-B10BKVG-E air conditioner (and maybe other Tohsiba ones)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published