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:
I hereby claim:
To claim this, I am signing this object:
| float posx; | |
| float posy; | |
| float incx = 5; | |
| float incy = 5; | |
| //cointains the pad position and width and height | |
| float posXPad, posYPad; | |
| float padW, padH; |
| 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 scaleValue = 1; | |
| color backColor; | |
| void setup() { | |
| size(800, 500); | |
| frameRate(24); | |
| posx = random(0, width); | |
| posy = random(0, height); |
| void setup() { | |
| size(800, 500); | |
| frameRate(24); | |
| } | |
| void draw() { | |
| background(255); | |
| drawRobot(1, 50,50); //calling the function with fixed parameters | |
| import ddf.minim.*; | |
| import ddf.minim.ugens.*; | |
| Minim minim; | |
| AudioOutput out; | |
| float posx; | |
| float posy; | |
| float incx = 10; |
| /* | |
| programa no python | |
| import serial | |
| s = serial.Serial("/dev/tty.usbmodemfd121",19200) | |
| //liga led botao |
| #include <Wire.h> | |
| #include <Adafruit_PWMServoDriver.h> | |
| // called this way, it uses the default address 0x40 | |
| // you can also call it with a different address you want | |
| Adafruit_PWMServoDriver servo1 = Adafruit_PWMServoDriver(0x40); | |
| Adafruit_PWMServoDriver servo2 = Adafruit_PWMServoDriver(0x42); | |
| Adafruit_PWMServoDriver light1 = Adafruit_PWMServoDriver(0x43); | |
| Adafruit_PWMServoDriver light2 = Adafruit_PWMServoDriver(0x44); |
I hereby claim:
To claim this, I am signing this object:
| // add this to functions.php | |
| //register acf fields to Wordpress API | |
| //https://support.advancedcustomfields.com/forums/topic/json-rest-api-and-acf/ | |
| function acf_to_rest_api($response, $post, $request) { | |
| if (!function_exists('get_fields')) return $response; | |
| if (isset($post)) { | |
| $acf = get_fields($post->id); | |
| $response->data['acf'] = $acf; |