Arduino_Core_STM32 icon indicating copy to clipboard operation
Arduino_Core_STM32 copied to clipboard

Added Support for ELV-BM-TRX1

Open ELV-Elektronik-AG opened this issue 1 year ago • 0 comments

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);
}

ELV-Elektronik-AG avatar May 22 '24 06:05 ELV-Elektronik-AG