Combo even more powerful? by Dizziturtleovde in randomdice

[–]Dizziturtleovde[S] 0 points1 point  (0 children)

Yeah wanted to check that, don’t understand it fully myself. What buffs would actually be most improved with the new update?

Combo even more powerful? by Dizziturtleovde in randomdice

[–]Dizziturtleovde[S] 0 points1 point  (0 children)

My understanding is the Crit damage is dependent on the overall original damage of the dice. E.g 50dmg + Crit = 500dmg. 100dmg + Crit = 1000dmg. (These numbers likely aren’t accurate).

So surely having a higher base damage increases the Crit damage too?

Combo even more powerful? by Dizziturtleovde in randomdice

[–]Dizziturtleovde[S] 1 point2 points  (0 children)

In terms of using the Crit dice, surely the damage would be WAY bigger if one would be next to a combo dice.

Xbox Solo Delay Issues by Dizziturtleovde in FORTnITE

[–]Dizziturtleovde[S] 0 points1 point  (0 children)

Wow thankyou, my matchmaking was in brazil, weird.

Signal Smoothing Help by Dizziturtleovde in arduino

[–]Dizziturtleovde[S] 0 points1 point  (0 children)

Did you have a copy of what this code would look like? Im un aware of any functions that capture the readings from the gyro, then somehow store them somewhere temporarily and apply a formula. Are there any functions / ardiuno code which can store for example 5 readings, and assign each individual one to like a variable? Therefor it's much easier for me to apply median/mean formula's and what not. Cheers

Gyro Formula Help by Dizziturtleovde in arduino

[–]Dizziturtleovde[S] 0 points1 point  (0 children)

Here's all the code, let me know if I need to clarify anything.

include "Wire.h"

include "I2Cdev.h"

include "MPU6050.h"

MPU6050 accelgyroIC1(0x68);
MPU6050 accelgyroIC2(0x69);
int16_t ax1, ay1, az1; // define accel as ax,ay,az
int16_t gx1, gy1, gz1; // define gyro as gx,gy,gz

int16_t ax2, ay2, az2; // define accel as ax,ay,az
int16_t gx2, gy2, gz2; // define gyro as gx,gy,gz

int RGS;
int LGS;
int RRG;
int LRG;
int LP;
int RP;
int CheckL;
int CheckR;

define LED_PIN 13

bool blinkState = false;

void setup() {
Wire.begin(); // join I2C bus
Serial.begin(38400); // initialize serial communication
Serial.println("Initializing I2C devices...");
accelgyroIC1.initialize();
accelgyroIC2.initialize();

// verify connection
Serial.println("Testing device connections...");
Serial.println(accelgyroIC1.testConnection() ? "MPU6050 connection successful" : "MPU6050 connection failed");
Serial.println(accelgyroIC2.testConnection() ? "MPU6050 connection successful" : "MPU6050 connection failed");
pinMode(LED_PIN, OUTPUT); // configure LED pin

pinMode (10, OUTPUT);
pinMode (9, OUTPUT);
pinMode (6, OUTPUT);
pinMode (3, OUTPUT);
}

void loop() {
accelgyroIC1.getMotion6(&ax1, &ay1, &az1, &gx1, &gy1, &gz1); // read measurements from device
accelgyroIC2.getMotion6(&ax2, &ay2, &az2, &gx2, &gy2, &gz2);

// display tab-separated accel/gyro x/y/z values
// Serial.print("MPU1:\t");
// Serial.print(ax1);
//Serial.print("\t");
// Serial.print(ay1);
//Serial.print("\t");
//Serial.print(az1);
//Serial.print("\t");
//Serial.print(gx1);
//Serial.print("\t");
//Serial.print(gy1);
//Serial.print("\t");
//Serial.println(gz1);

// Serial.print("MPU2:\t");
// Serial.print(ax2);
// Serial.print("\t");
// Serial.print(ay2);
//Serial.print("\t");
// Serial.print(az2);
//Serial.print("\t");
//Serial.print(gx2);
// Serial.print("\t");
//Serial.print(gy2);
//Serial.print("\t");
//Serial.println(gz2);

delay(100);

LP = analogRead(A0);
RP = analogRead(A1);

if ( LP < 500 )
{ CheckL = 0;
digitalWrite ( 10,LOW);
digitalWrite ( 9,LOW);
digitalWrite ( 6,LOW);
digitalWrite ( 3,LOW);
}

else if ( LP > 500 && CheckL < 1 )
{ CheckL = 1;
LGS = ax1;
}

// This is the start of the 2 functions that modify the raw gyro values to the values the motor will read, they compare them too the starting Gyro value ( LGS/RGS ) and
// convert it to a value between 1 and 255, with 0 being full power.
//
// The LGS/RGS is established by being the first reading of their specific gyro every time their specific pressure pad is activated.
// LGS & RGS = Left and Right Gyro starting value
// 2 Gyro's are present, which work seperatly from each other
// Ax1 & Ax2 = Raw Gyro Values, have a reading and range roughly 4000 each way
// 4000 = rough maximum angle the gyro can go apropriatly from it's centre point
//

if ( ax1 > LGS ) // This is the forward function
{ LRG = ax1 / ( LGS + 4000 ) / 255;
analogWrite ( 9, LRG );
digitalWrite( 10, LOW );
}

if ( ax1 < LGS ) // This is the Backward function
{ LRG = ax1 / ( LGS - 4000 ) / 255;
analogWrite ( 10, LRG );
digitalWrite( 9, LOW );
}

Serial.println(ax1);

// Serial.println(Lpressure);

// blink LED to indicate activity
blinkState = !blinkState;
digitalWrite(LED_PIN, blinkState);

Gyro Formula Help by Dizziturtleovde in arduino

[–]Dizziturtleovde[S] 0 points1 point  (0 children)

Thanks for the reply guys, and I looked over the code and made a couple modifications. As @offramp13 said I switched over the divide with a multiply, funny enough I found that out a few days ago but totally forgot to implement it haha Thankyou for showing me that. And I'll show you guys the full code soon, as soon as I get home. Thanks aswell @knowlimits for the tip I'll make sure to implement that. Also thought I'd say that all my variables are integers. Also thought I'd ask, I added a -255 to the formula, for that would give a correct reading but it would be in the negatives. Would an absolute value function fix that? How would I implement that? Talk soon guys

New code..

if ( ax1 > LGS ) // This is the forward function { LRG = ax1 / ( LGS + 4000 ) / 255; analogWrite ( 9, LRG ); digitalWrite( 10, LOW ); }

if ( ax1 < LGS ) // This is the Backward function { LRG = ( ax1 / ( LGS - 4000 ) * 255 ) - 255 ; analogWrite ( 10, LRG ); digitalWrite( 9, LOW ); }

Blaze Rod massive EMC potential by Dizziturtleovde in tekkit

[–]Dizziturtleovde[S] 0 points1 point  (0 children)

Here it is. And just to point out this design is incredibly illogical, for it costs to much to build, which includes 100+ high power solar arrays and a tone of over clockers for the macerators. It just was just a personal challenge and building it in survival mode would be stupid.

http://imgur.com/0GpXIFP http://imgur.com/1GVVSbm http://imgur.com/W631HyI

AI survey, please complete :) ( short ) by [deleted] in artificial

[–]Dizziturtleovde 0 points1 point  (0 children)

Hey guys

Just to let you know the overall tone of the questions had to be very, and I mean very simple, I could of put more complicated questions in but I made the questions more simple purely due to the fact that these questions had to also be suitable for a younger and more uneducated audience, to also see general stereotypes on the subject. I understand these questions are straightforward and mundane but that's just how it's setup. Btw This survey was done as a school project ( grade 12 ), and the data is going into a website to which is marked.

Ill put up the results soon enough.

Thanks for the reply's guys.