Base Chassis: MRM Machete
Wheel Base: 430mm
Weight: 300g
Material: Carbon Fiber
| package main | |
| import "testing" | |
| func TestStringCompression(t *testing.T) { | |
| tables := []struct { | |
| in string // the string to test against | |
| out string // the result of the compression | |
| }{ |
| package main | |
| import "fmt" | |
| // StringCompression ... | |
| // @param input string | |
| // returns string | |
| // given an input string | |
| // write an algorithm which compresses the string | |
| // by converting sequential repeats of characters |
| Price Quantity Total | |
| Chameleon | |
| Chameleon | |
| Color : | |
| Silver | |
| Cam braces: | |
| Rubber tilt mechanism (for HS1177) | |
| Power Distribution Board *Not needed with AIO flight controllers: | |
| Yes, please (with regulator) | |
| Flight Controller: |
| // overload_date.cpp | |
| // compile with: /EHsc | |
| #include <iostream> | |
| using namespace std; | |
| class Date | |
| { | |
| int mo, da, yr; | |
| public: | |
| Date(int m, int d, int y) |
Base Chassis: MRM Machete
Wheel Base: 430mm
Weight: 300g
Material: Carbon Fiber
| #include <Wire.h> | |
| #include <Time.h> | |
| #include <SPI.h> | |
| #include <Adafruit_Sensor.h> | |
| #include <Adafruit_BME280.h> | |
| #include <ESP8266WiFi.h> | |
| #include <DS1302.h> // rst - pin 12 // io - pin 13 // scl - pin 14 | |
| #define BME_SCK 13 | |
| #define BME_MISO 12 |
| #include <Servo.h> | |
| #include <SPI.h> | |
| #include <PS3USB.h> | |
| #include <Usb.h> | |
| USB Usb; | |
| PS3USB PS3(&Usb); | |
| Servo right_servo; | |
| Servo left_servo; |
| /* | |
| Simple HTTP get webclient test | |
| */ | |
| #include <Wire.h> | |
| #include <SPI.h> | |
| #include <Adafruit_Sensor.h> | |
| #include <Adafruit_BME280.h> | |
| #include <ESP8266WiFi.h> | |
| #define BME_SCK 13 |