TTGO-T-Beam-LoRa-APRS/lib/AXP202X_Library/examples/axp202_gpio_input/axp202_gpio_input.ino

67 lines
2.2 KiB
C++

/*
MIT License
Copyright (c) 2019 lewis he
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include <Wire.h>
#include <axp20x.h>
AXP20X_Class axp;
const uint8_t i2c_sda = 21;
const uint8_t i2c_scl = 22;
void setup()
{
Serial.begin(115200);
Wire.begin(i2c_sda, i2c_scl);
int ret = axp.begin(Wire);
if (ret == AXP_FAIL) {
Serial.println("AXP Power begin failed");
while (1);
}
//! AXP202 GPIO has no internal pull-up or pull-down.
//! For stability, external pull-up or pull-down resistors are required.
ret = axp.setGPIOMode(AXP_GPIO_0, AXP_IO_INPUT_MODE);
Serial.printf("AXP_GPIO_0 %d\n", ret);
ret = axp.setGPIOMode(AXP_GPIO_1, AXP_IO_INPUT_MODE);
Serial.printf("AXP_GPIO_1 %d\n", ret);
ret = axp.setGPIOMode(AXP_GPIO_2, AXP_IO_INPUT_MODE);
Serial.printf("AXP_GPIO_2 %d\n", ret);
ret = axp.setGPIOMode(AXP_GPIO_3, AXP_IO_INPUT_MODE);
Serial.printf("AXP_GPIO_3 %d\n", ret);
}
void loop()
{
Serial.printf("GPIO: [0]:%d [1]:%d [2]:%d [3]:%d\n",
axp.gpioRead(AXP_GPIO_0),
axp.gpioRead(AXP_GPIO_1),
axp.gpioRead(AXP_GPIO_2),
axp.gpioRead(AXP_GPIO_3)
);
delay(1000);
}