Skip to content

Instantly share code, notes, and snippets.

@Voha888
Voha888 / Comparison Espressif ESP MCUs.md
Created April 20, 2025 23:20 — forked from sekcompsci/Comparison Espressif ESP MCUs.md
Comparison chips (SoCs) table for ESP8266/ESP32/ESP32-S2/ESP32-S3/ESP32-C3/ESP32-C6. Forked from @fabianoriccardi

Comparison chips (SoCs) table for ESP8266/ESP32/ESP32-S2/ESP32-S3/ESP32-C3/ESP32-C6

A minimal table to compare the Espressif's MCU families.

ESP8266 ESP32 ESP32-S2 ESP32-S3 ESP32-C3 ESP32-C6
Announcement Date 2014, August 2016, September 2019, September 2020, December
@Voha888
Voha888 / upgrade-all-packages
Created January 23, 2024 19:38 — forked from TerAnYu/upgrade-all-packages
Upgrade all packages on OpenWRT router
#!/bin/ash
echo "Updating package list..."
opkg update > /dev/null
if [ `opkg list-upgradable | cut -d " " -f1 | wc -l` -gt 0 ]; then
echo "Available updates:"
opkg list-upgradable
echo ""
@Voha888
Voha888 / esp32_ota_stm32.ino
Created June 20, 2023 10:26 — forked from rounakdatta/esp32_ota_stm32.ino
Flash STM32 firmware from ESP32
#include <SPIFFS.h>
/*
*
* Copyright (C) 2017 CS.NOL https://github.com/csnol/1CHIP-Programmers
*
* This program 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,
* and You have to keep below webserver code
@Voha888
Voha888 / bot.rb
Created December 14, 2021 11:42 — forked from dideler/bot.rb
Sending a notification message to Telegram using its HTTP API via cURL
# Use this script to test that your Telegram bot works.
#
# Install the dependency
#
# $ gem install telegram_bot
#
# Run the bot
#
# $ ruby bot.rb
#
@Voha888
Voha888 / debug.c
Created May 25, 2019 21:59 — forked from bravikov/debug.c
Вывод отладочных сообщений через USART STM32
/* Вывод отладочных сообщений через USART STM32.
* Работает как минимум на STM32F0, STM32F1, STM32F4, STM32F7.
* Работает как функция printf() стандартной библиотеки Си. */
#include <stdio.h>
#include <stdarg.h>
void debug(const char * format, ...);
void debug(const char * format, ...)