Skip to content

Instantly share code, notes, and snippets.

View Deepbluewarn's full-sized avatar

Jaehyeon Joo Deepbluewarn

  • Korea
View GitHub Profile
@Deepbluewarn
Deepbluewarn / gist:4307048198817b6a1dbf62121a87441b
Created October 7, 2025 11:14
Arduino UNO R4 WiFi 온습도계 예제
#include <WiFiS3.h>
#include <PubSubClient.h>
#include "DHT.h"
#define DHTPIN A1
#define DHTTYPE DHT22
const char* ssid = "YOUR_SSID";
const char* password = "YOUR_PWD";
const char* mqtt_server = ""; // ex: 192.168.0.10
@Deepbluewarn
Deepbluewarn / roulette.css
Last active October 25, 2024 09:02
간단한 룰렛 게임
:root {
--table-width: 600px;
--wheel-size: 27rem;
}
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 8px;
}
@Deepbluewarn
Deepbluewarn / carousel.css
Created August 8, 2024 06:57
CSS transition carousel
@Deepbluewarn
Deepbluewarn / dogument.js
Last active August 2, 2024 07:12
document.write method with br tag.
const dogument = { write: (...value) => { document.write(...value, '<br>') }}