racerxdl / example.ino
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 month ago
Fita RGB
| 1 | char buff[3]; |
| 2 | char recv = 0; |
| 3 | |
| 4 | void setup() { |
| 5 | Serial.begin(115200); |
| 6 | } |
| 7 | |
| 8 | void loop() { |
| 9 | if(Serial.available() > 0) { |
| 10 | buff[recv] = Serial.read(); |
racerxdl / offsets.txt
0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность 1 month ago
Pump It Up Fiesta 2 Save Decrypter/Encrypter
| 1 | import struct |
| 2 | import zlib |
| 3 | |
| 4 | def decryptprofile(savedata,rankdata): |
| 5 | |
| 6 | seed = 0xEBADA1 |
| 7 | for i in range(0,len(savedata)): |
| 8 | smbuff = savedata[i] |
| 9 | savedata[i] ^= (seed >> 8) & 0xFF |
| 10 | seed = (0x68993 * (smbuff + seed) + 0x4FDCF) & 0xFFFFFFFF |
racerxdl / hc06config.py
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 month ago
HC-06 Module Configurator through Serial Port
| 1 | import serial |
| 2 | import time |
| 3 | |
| 4 | PORT = "/dev/ttyUSB0" # If windows, change it to COMX |
| 5 | PINCODE = "1234" # Change it to your PIN |
| 6 | DEVNAME = "mybt" # Change it to your device name |
| 7 | BAUDRATE= 115200 # Change it to your baudrate |
| 8 | |
| 9 |
racerxdl / hc06config.ino
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 month ago
HC-06 Module Configurator - Arduino Code
| 1 | /* |
| 2 | HC-06 Module Configurator |
| 3 | |
| 4 | This Arduino Code Configures the Baudrate, name and PIN to a HC-06 Bluetooth module on Serial port 0 |
| 5 | |
| 6 | |
| 7 | By: Lucas Teske |
| 8 | */ |
| 9 | |
| 10 | #define BAUDRATE 115200 // Valid values: 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200. |
racerxdl / axispipe.py
0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность 1 month ago
A Joystick Axis Pipe. This is the Arduino code that receives through a serial interface the commands and generate the PPM Pulses.
| 1 | #include <Servo.h> |
| 2 | |
| 3 | Servo ch[6]; |
| 4 | |
| 5 | unsigned char buff[3]; |
| 6 | unsigned short count; |
| 7 | unsigned short kcount = 0; |
| 8 | void TurnOn() { |
| 9 | ch[0].attach(3); |
| 10 | ch[1].attach(5); |
racerxdl / NX2 Score Description
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 month ago
This is the NX2 Score stuff. These are how they are calculated in NX2 Game.
| 1 | So for NX, NX2, NXA(Not Tested) the score works like that. |
| 2 | |
| 3 | We have a few defined integer globals: |
| 4 | SCORE_PERFECT = 1000 // This is if you hit a perfect |
| 5 | SCORE_GREAT = 500 |
| 6 | SCORE_GOOD = 100 |
| 7 | SCORE_BAD = -200 |
| 8 | SCORE_MISS = -500 |
| 9 | SCORE_MISS_LONGNOTE = -300 |
| 10 | SCORE_NIGHTMARE_BONUS = 500000 // If the music is double, you get this more at score. |
racerxdl / extralist.py
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 month ago
Extra Keys Directory List Generator for Fiesta 2
| 1 | #!/usr/bin/env python |
| 2 | |
| 3 | |
| 4 | def HexRange(start,end): |
| 5 | a = int(start, 16) |
| 6 | b = int(end, 16) |
| 7 | return range(a,b) |
| 8 | |
| 9 | f = open("extralist","w") |
racerxdl / VPXEncoder.cpp
0 лайк(-ов)
0 форк(-ов)
3 файл(-ов)
Последняя активность 1 month ago
A simple VPX Encoder Class based on VP8 SDK example
| 1 | /* This is not a full code, just an example */ |
| 2 | |
| 3 | #include "video/VPXEncoder.h" |
| 4 | |
| 5 | VPXEncoder encoder; |
| 6 | char *pixels; |
| 7 | |
| 8 | int main() { |
| 9 | /* do blablabla */ |
| 10 | encoder.in_width = 1280; // Input Image Width |