Skip to content

Instantly share code, notes, and snippets.

View nickzoic's full-sized avatar
🦁

Nick Moore nickzoic

🦁
View GitHub Profile
@nickzoic
nickzoic / mdimg
Created May 27, 2020 00:35
markdown image converter sript
#!/bin/bash
for SOURCE in "$@"
do
FNAME=${SOURCE##*/}
LABEL=${FNAME%.*}
IMAGE=img/$LABEL.jpg
THUMB=img/$LABEL-thumb.jpg
@nickzoic
nickzoic / main.c
Created January 24, 2020 00:52
Problem with ESP32 RMT
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_log.h"
#include "driver/rmt.h"
static const char *TAG = "test";
rmt_item32_t items[] = {
{{{ 50, 0, 50, 0 }}},
{{{ 2, 1, 1, 0 }}},