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 / 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