Chat
Welcome to Flux
Treat Flux like your intern. Tell it what you'd like to build and it'll get to work. You can also ask it questions, brainstorm ideas, and teach it your preferences. Learn More
.bin or .hex extension)..bin or .hex file.C
// Example of a simple blink program #include "main.h" int main(void) { HAL_Init(); SystemClock_Config(); __HAL_RCC_GPIOC_CLK_ENABLE(); GPIO_InitTypeDef GPIO_InitStruct = {0}; GPIO_InitStruct.Pin = GPIO_PIN_13; GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; GPIO_InitStruct.Pull = GPIO_NOPULL; GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; HAL_GPIO_Init(GPIOC, &GPIO_InitStruct); while (1) { HAL_GPIO_TogglePin(GPIOC, GPIO_PIN_13); HAL_Delay(1000); // Delay 1000 ms } }
Reviews
HTEW0154T8
Properties
Display Device
Chengdu Heltec Automation technology CO., LTD
HTEW0154T8
U
Pricing & Availability
Distributor | Qty 1 |
|---|---|
Arrow | $7.15–$9.23 |
Digi-Key | $10.08 |
LCSC | $0.94 |
Mouser | $9.28 |
Verical | $3.52–$5.30 |
Controls
Welcome 👋
Flux helps you build PCBs faster with an AI teammate!
Create your account to collaborate, stay updated, fork your own version, and get instant answers from our AI agent.
rex-flux
rex-flux
copilot
-
Decoupling Capacitors: These capacitors filter out noise from the power supply.
- VDD pins (pins 24, 36, and 48):
- Connect a 0.1 µF capacitor close to each VDD pin.
- VDDA pin (pin 9):
- Connect a 1 µF capacitor close to this pin additionally.
- VBAT pin (pin 1) (if using):
- Connect a 1 µF capacitor to GND.
-
Reset Circuit: To ensure reliable operation during reset conditions.
- NRST pin (pin 7):
- Connect a 10 kΩ pull-up resistor to VDD.
- Include a 100 nF capacitor to GND (optional but recommended).
-
Boot Configuration: To select the boot mode.
- BOOT0 pin (pin 44):
- Connect a 10 kΩ pull-down resistor to GND.
-
Oscillator (if external clock is required):
- High-speed external (HSE) oscillator:
- Connect an 8 MHz to 25 MHz crystal between pins 5 (OSC_IN) and 6 (OSC_OUT).
- Add two 22 pF loading capacitors to GND from these pins.
- Low-speed external (LSE) oscillator for RTC (optional):
- Connect a 32.768 kHz crystal between pins 3 (PC14) and 4 (PC15).
- Add two 22 pF loading capacitors to GND from these pins.
Summary of Connections: