Date: 2026-02-21
Project: HidGlobal.UniversalEncoder.Stubs.ConfigCardProgrammer
Yes, there are several references:
| class Logger < ::ActiveSupport::Logger | |
| def with_field(key, value) | |
| Thread.current['lograge.data'] ||= {} | |
| Thread.current['lograge.data'][key] = value | |
| return self | |
| end | |
| def with_fields(hash) | |
| if hash.is_a?(Hash) | |
| Thread.current['lograge.data'] ||= {} |
| exports.bitShiftLeft = function (buffer) { | |
| var shifted = Buffer.alloc(buffer.length); | |
| var last = buffer.length - 1; | |
| for (var index = 0; index < last; index++) { | |
| shifted[index] = buffer[index] << 1; | |
| if (buffer[index + 1] & 0x80) { | |
| shifted[index] += 0x01; | |
| } | |
| } | |
| shifted[last] = buffer[last] << 1; |
| syntax = "proto3"; | |
| package hwid; | |
| message PortalToApp { | |
| uint32 timestampMs = 1; | |
| Event event = 2; | |
| DeviceInfo deviceInfo = 3; | |
| CommandResponse commandResponse = 4; | |
| bytes accessoryMessage = 5; | |
| } |
The VIGIK system is quite misunderstood overall.
In France, most people live in appartment buildings, so the letter-boxes are not on the street. As such, the post office needs some way to enter the building to deliver mail. Originally, they used a mechanical key, that was universal across the country. The key was copied heavily, which meant that anyone could (and did) get access to buildings.
This mechanical key was replaced by the VIGIK system. "Services", such as the post, power company, etc can get access to buildings using a SERVICE BADGE. The SERVICE BADGES are MIFARE 1K Classic badges.
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <stdbool.h> | |
| #if defined(__APPLE__) | |
| #include <libkern/OSByteOrder.h> | |
| #define bswap_16(x) OSSwapInt16(x) | |
| #define bswap_32(x) OSSwapInt32(x) |
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <inttypes.h> | |
| #if defined(__APPLE__) | |
| #include <libkern/OSByteOrder.h> | |
| #define bswap_16(x) OSSwapInt16(x) | |
| #define bswap_32(x) OSSwapInt32(x) | |
| #define bswap_64(x) OSSwapInt64(x) |
| import array | |
| import pulseio | |
| import board | |
| import adafruit_irremote | |
| import time | |
| #from adafruit_circuitplayground import playground | |
| HEADER_VAL = 6000 | |
| BLACK = (0, 0, 0) |