diff options
author | a-chol <a-chol@users.noreply.github.com> | 2018-10-21 18:20:24 +0200 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-10-21 09:20:24 -0700 |
commit | 8e3330bbf6f8c4faf39a3df20fa3ab62910c8b19 (patch) | |
tree | 9db8d6558b622c8f40f8bf0052fe11e960dfc3b6 /keyboards/bminiex/i2c.h | |
parent | 877c285ec8c5509f665b558cb2bcaa89d6093055 (diff) | |
download | qmk_firmware-8e3330bbf6f8c4faf39a3df20fa3ab62910c8b19.tar.gz |
Keyboard: bminiex : Working backlight (#4171)
* bminiex : Working backlight
* bminiex keyboard with fixes
* bminiex keyboard more fixes
Diffstat (limited to 'keyboards/bminiex/i2c.h')
-rw-r--r-- | keyboards/bminiex/i2c.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/keyboards/bminiex/i2c.h b/keyboards/bminiex/i2c.h new file mode 100644 index 000000000..ada8cc7bf --- /dev/null +++ b/keyboards/bminiex/i2c.h @@ -0,0 +1,25 @@ +/* +Copyright 2016 Luiz Ribeiro <luizribeiro@gmail.com> + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +// Please do not modify this file + +#pragma once + +void i2c_init(void); +void i2c_set_bitrate(uint16_t bitrate_khz); +uint8_t i2c_send(uint8_t address, uint8_t *data, uint16_t length); + |