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 <esp_now.h> | |
#include <WiFi.h> | |
#define CHANNEL 1 | |
/** This is all the data about the peer **/ | |
esp_now_peer_info_t slave; | |
/** The all importent data **/ | |
uint8_t data = 0; |
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 <esp_now.h> | |
#include <WiFi.h> | |
#define CHANNEL 1 | |
uint8_t newData; | |
void setup() | |
{ | |
Serial.begin(115200); |
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 | |
# Author : FIRE7LY | |
# Telegram : @fire7ly | |
# A script to enable ssh after first configuration of Ubport ... | |
# This script made in hope that it will usefull to automate the ssh configuration processes | |
# To avoide all the tings doing menually it will saye time and increase speed of debigging tihings... | |
# All the conmmand and instructions are taken from official ubport documentation (https://docs.ubports.com/en/latest/userguide/advanceduse/ssh.html) ... | |
# So All credit Goies to them.. | |
################################################################################################################################################### |
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 | |
# check root user | |
if [ "$(id -u)" != 0 ]; then | |
echo "ERROR! Run this script with root user!" | |
exit 1 | |
fi | |
#var | |
tool="SPflashtools" |
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 | |
# A Bash Script Which Is Used To Flash GSIS On Realme Devices, It Can Flash Gsi On Dynamic Partition Using Fastboot | |
# Summary About Working Under The Hood!! | |
# 1. Reboot Into Bootloader From Any State. | |
# EX : | |
# - Adb ( device or recovery mode both supported ...) | |
# - Fastboot ( If It Detect Fastbootd Mode, It Will Reboot Your Device Back Into Bootloader Mode To Avoide Damage ...) | |
# 2. Flash vbmeta Image To Disable Verification And Verity. | |
# 3. Reboot Into Fastbootd To Get Partition Stracture Of Dynamic Images And Erase System Image As Well As Purge Useless Images { Those Are Associated With Rui And No Need To Boot A GSI System Imge } |
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/sh | |
# A Package Finder Script Made By @fire7ly With The Help Of Google Adb Binary Tool, Part Of Android Sdk Tools And The Help Of Inbuild Android Package Manager | |
# System Which Allow Us to Know Package Name And Directory Where Is App Installed On It, Also Tell Us About Enable Packages, Disable Packages, Third Party Packages | |
# And Directory Of All Of Them So, This Is Script Made For Automation Of Those Task In Simple Way Without Hassale Of Commands, | |
# Just Pass An Argument With It And It Will Do That Work For You As Well As Save That Output In A Text File For Future Usage, If You Like To Check Them Later, See Yaa!! | |
#Env Ver | |
ver=V1.0 |
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 | |
# | |
# youtube-to-bootanimation.sh - Download & create Android boot animations from YouTube videos | |
# | |
# author: Jared Rummler <[email protected]> | |
# | |
# define veriable where the bootanimation will be created | |
tmp=~/Desktop/temp | |
out=~/Desktop/temp/temp.mp4 |