Arduino_Core_STM32
Arduino_Core_STM32 copied to clipboard
Added Support for ELV-BM-TRX1
Pull Request template
Please, Make sure that your PR is not a duplicate. Search among the Pull request before creating one.
IMPORTANT: Please review the CONTRIBUTING.md file for detailed contributing guidelines.
Thanks for submitting a pull request. Please provide enough information so that others can review your pull request:
Summary
This PR fixes/implements the following bugs/features
- [ ] Added Support for the ELV-BM-TRX1
The ELV Modular System is a great fit for the stm32duino library
Validation
Github Actions have passed, a working sketch is
#include "STM32LowPower.h"
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
// Configure low power
LowPower.begin();
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
LowPower.deepSleep(1000);
digitalWrite(LED_BUILTIN, LOW);
LowPower.deepSleep(1000);
}