This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SUPER |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { Link } from "react-router-dom"; | |
import matter from "gray-matter"; | |
import visit from "unist-util-visit"; | |
import renderToString from "next-mdx-remote/render-to-string"; | |
import type { Post, MDXPost } from "../types"; | |
import * as shiki from "shiki"; | |
import setCDN from "shiki"; | |
import langTS from "../content/shiki/languages/ts.tmLanguage.json"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
testy gisty |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SYSTEM_MODE(MANUAL); | |
// UDP Port used for two way communication | |
unsigned int localPort = 1900; | |
unsigned int trigger = D0; | |
//Creates buffer variable and gives it a size | |
#define MAX_SIZE 1024 | |
char buffer[MAX_SIZE]; | |
//Creates UDP manipulation variable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SYSTEM_MODE(MANUAL); | |
//Disables connection to Spark Cloud without additional API query | |
// UDP Port used for two way communication | |
unsigned int localPort = 8888; | |
const char *message = "A"; | |
unsigned int ssdpport = 1900; | |
IPAddress ip( 239, 255, 255, 250 ); |