Skip to content

Instantly share code, notes, and snippets.

View juemrami's full-sized avatar

Julio Ramirez juemrami

View GitHub Profile
@juemrami
juemrami / whynter-ac.c
Created December 18, 2025 07:21
description of whynter arc14 ir protocol packet layout. reverse engineered
#include <stdbool.h>
#include <stdint.h>
#include "whynter-ac.h"
static uint8_t clamp_u8(uint8_t value, uint8_t min, uint8_t max) {
if (value < min) return min;
if (value > max) return max;
return value;
}