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
| #!/usr/bin/env python | |
| # Flipper RAW .sub format | |
| # | |
| # Having a look at some of the code in lib/subghz/protocols/raw.c | |
| # - Decoded data is stored as a line starting with the text "Raw_Data: " followed by space delimited integers. | |
| # - Each line stores a maximum number of integers limited to SUBGHZ_DOWNLOAD_MAX_SIZE ,defined as 512. Then a new line is written. | |
| # - The sign of each integer represents a decoded signal logic level, positive / negative , logic level 1 / 0 | |
| # - The absolute value of each integer represents the signal level duration. I am guessing this is in micro-seconds |
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
| /** | |
| * ESP32 I2S UDP Streamer | |
| * | |
| * This is influenced by maspetsberger's NoiseLevel at | |
| * https://github.com/maspetsberger/esp32-i2s-mems/blob/master/examples/NoiseLevel/NoiseLevel.ino | |
| * | |
| * @author GrahamM | |
| */ | |
| #include <driver/i2s.h> |
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
| #include "Arduino.h" | |
| #include "esp_camera.h" | |
| #include "ESPAsyncWebServer.h" | |
| typedef struct { | |
| camera_fb_t * fb; | |
| size_t index; | |
| } camera_frame_t; | |
| #define PART_BOUNDARY "123456789000000000000987654321" |
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
| #include "Arduino.h" | |
| #include "Wire.h" | |
| /* | |
| ** IP5306 Power Module | |
| */ | |
| /* M5 Defaults | |
| KeyOff: Enabled | |
| BoostOutput: Disabled |
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
| substitutions: | |
| devicename: ttgocam | |
| friendly_name: test esp32cam | |
| ip_address: 192.168.1.230 | |
| esphome: | |
| name: $devicename | |
| platform: ESP32 | |
| board: esp-wrover-kit |
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
| 0-mail.com | |
| 0815.ru | |
| 0clickemail.com | |
| 0wnd.net | |
| 0wnd.org | |
| 10minutemail.com | |
| 20minutemail.com | |
| 2prong.com | |
| 30minutemail.com | |
| 3d-painting.com |
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
| #!/usr/bin/python | |
| import curses, random | |
| screen = curses.initscr() | |
| width = screen.getmaxyx()[1] | |
| height = screen.getmaxyx()[0] | |
| size = width*height | |
| char = [" ", ".", ":", "^", "*", "x", "s", "S", "#", "$"] | |
| b = [] |
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
| #!/bin/bash | |
| declare -i f=75 s=13 r=2000 t=0 c=1 n=0 l=0 | |
| declare -ir w=$(tput cols) h=$(tput lines) | |
| declare -i x=$((w/2)) y=$((h/2)) | |
| declare -ar v=( [00]="\x83" [01]="\x8f" [03]="\x93" | |
| [10]="\x9b" [11]="\x81" [12]="\x93" | |
| [21]="\x97" [22]="\x83" [23]="\x9b" | |
| [30]="\x97" [32]="\x8f" [33]="\x81" ) | |
| OPTIND=1 |