I hereby claim:
- I am radames on github.
- I am radames (https://keybase.io/radames) on keybase.
- I have a public key whose fingerprint is 3158 E138 C95E 4847 A39F D5A8 871E 4EF0 D752 85CA
To claim this, I am signing this object:
| /* | |
| programa no python | |
| import serial | |
| s = serial.Serial("/dev/tty.usbmodemfd121",19200) | |
| //liga led botao |
I hereby claim:
To claim this, I am signing this object:
| void setup() { | |
| size(800, 500); | |
| frameRate(24); | |
| } | |
| void draw() { | |
| background(255); | |
| drawRobot(1, 50,50); //calling the function with fixed parameters | |
| float posx; | |
| float posy; | |
| float scaleValue = 1; | |
| color backColor; | |
| void setup() { | |
| size(800, 500); | |
| frameRate(24); | |
| posx = random(0, width); | |
| posy = random(0, height); |
| float posx; | |
| float posy; | |
| float scaleValue = 1; | |
| color backColor; | |
| int blink = 2; | |
| long lastTime = 0; | |
| void setup() { | |
| size(800, 500); | |
| frameRate(24); |
| float posx; | |
| float posy; | |
| float incx = 5; | |
| float incy = 5; | |
| //cointains the pad position and width and height | |
| float posXPad, posYPad; | |
| float padW, padH; |
| import ddf.minim.*; | |
| import ddf.minim.ugens.*; | |
| Minim minim; | |
| AudioOutput out; | |
| float posx; | |
| float posy; | |
| float incx = 10; |
| //Planet_Kronos_x8 The Kazimier Dezember 2015 | |
| //The MIT License (MIT) | |
| #include <SPI.h> | |
| #include <Ethernet.h> | |
| #include <EthernetUdp.h> | |
| #include <OSCBundle.h> | |
| #define DEBUG 1 |
| from pygame.locals import KEYDOWN, K_ESCAPE, K_q | |
| import pygame | |
| import cv2 | |
| import sys | |
| camera = cv2.VideoCapture(1) | |
| pygame.init() | |
| pygame.display.set_caption("OpenCV camera stream on Pygame") | |
| screen = pygame.display.set_mode([1280, 720]) |
| import pygame | |
| from pygame.locals import * | |
| import cv2 | |
| import numpy as np | |
| import time | |
| import picamera | |
| import picamera.array | |
| screen_width = 640 |