David Rimer
/
Gigatron_Emulator
A small emulator for the gigatron created for the STM32F746G-DISCO and an NES wii controller
Diff: WiiClassicControllerReader/I2CConfig.h
- Revision:
- 1:4c1f3d32fceb
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WiiClassicControllerReader/I2CConfig.h Thu Mar 05 01:33:52 2020 +0000 @@ -0,0 +1,40 @@ +/* +* WiiClassicControllerReader. A program allowing the output of one or two +* Wii Classic Controllers to be read via I2C and decoded for use, using the mbed +* microcontroller and its associated libraries. +* +* Written by Alfredo Guerrero <alfredog83@gmail.com> for the mbedGC open-source +* game console <http://www.mbedgc.com>. Based on the original code for +* the WiiNunchuckReader written by Petras Saduikis <petras@petras.co.uk>. +* +* This file is part of WiiClassicControllerReader. +* +* WiiClassicControllerReader 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 3 of the License, or +* (at your option) any later version. +* +* WiiClassicControllerReader 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 can find a copy of the GNU General Public License at <http://www.gnu.org/licenses/>. +*/ + +#ifndef ALFREDOG83_I2CCONFIG_H +#define ALFREDOG83_I2CCONFIG_H + +#include <mbed.h> + +class I2CPort_A +{ +public: + static const PinName SDA; + static const PinName SCL; +}; + +const PinName I2CPort_A::SDA = PB_9; +const PinName I2CPort_A::SCL = PB_8; + +#endif \ No newline at end of file