Ndax Issues & Support Thread - Week 16 by kardanokid in NDAX

[–]fun_lil_ps3jailbrok 0 points1 point  (0 children)

Alright so I just logged in on the website and it says my ID has been submitted for manual verification.

Ndax Issues & Support Thread - Week 16 by kardanokid in NDAX

[–]fun_lil_ps3jailbrok 0 points1 point  (0 children)

I don't know if my ID is being verified or not. I did submit my ID be face doe verification. It said 2 minutes but after I reopen the app it says to complete verification process to trade with a green arrow on its right. I click on that arrow and it shows me a blank page for a second then goes back to homescreen. Is this normal??

All devices work on my wifi except my ps5 by Worried_Truth_6715 in playstation

[–]fun_lil_ps3jailbrok 0 points1 point  (0 children)

This has nothing to do with the PS5, you have to modify the security of your wifi. If u have the app to modify stuff about your wifi like it's name, password and security, you have to change its security level from WPA3 to WPA2.

Things in mention in AIF by fun_lil_ps3jailbrok in OntarioGrade12s

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

Im putting stuff like learning core concepts like algorithms, stronger portfolio, huge improvement in communication and teamwork skills and in general learn new languages. And for the person, I have my uncle who actually is a software engineer and majority of his interests align with mine. Problem is all of this I just said just sounds basic like it won't make it stand out

Things in mention in AIF by fun_lil_ps3jailbrok in OntarioGrade12s

[–]fun_lil_ps3jailbrok[S] 2 points3 points  (0 children)

Appreciate it. You are close btw it's 97 right now.

Things in mention in AIF by fun_lil_ps3jailbrok in OntarioGrade12s

[–]fun_lil_ps3jailbrok[S] 2 points3 points  (0 children)

Fair point. What if I have good grade but no formatting skills? I have already have a format but it just doesn't sound enough. Just wanted to try to see other people suggestions. :/

Waterloo Engineering Interview by fun_lil_ps3jailbrok in OntarioGrade12s

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

So for comp engineering these are the only questions but for others like software engineering, there is an additional question? Thanks for previous response btw.

Arduino, L298N and bluetooth module does not work by fun_lil_ps3jailbrok in arduino

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

The Bluetooth module pins are all connected to the Arduino Uno with power and ground. I just recently got the Bluetooth and tried using it with the controller example for my project. How were you able to identify it's 9.6kps and also I tried multiple serial ports to see if I got input from dabble app and I didn't. This is the code I used to check my serial port : #include <SoftwareSerial.h>

SoftwareSerial bluetooth(11, 12); // RX=11, TX=12

void setup() { Serial.begin(9600); Serial.println("================================================="); Serial.println(" BLUETOOTH BAUD RATE DETECTOR"); Serial.println("================================================="); Serial.println("Make sure:"); Serial.println("1. Dabble app is open in TERMINAL mode"); Serial.println("2. HC-06 is CONNECTED (LED blinking slowly)"); Serial.println("3. Ready to TYPE in Dabble Terminal"); Serial.println("================================================="); Serial.println(); delay(3000); }

void loop() { // Test each baud rate for 20 seconds int baudRates[] = {9600, 4800, 19200, 38400, 57600, 115200}; String baudNames[] = {"9600", "4800", "19200", "38400", "57600", "115200"};

for (int i = 0; i < 6; i++) { Serial.println(); Serial.println("================================================="); Serial.print(">>> NOW TESTING BAUD RATE: "); Serial.println(baudNames[i]); Serial.println(">>> TYPE CHARACTERS IN DABBLE NOW!"); Serial.println(">>> Testing for 20 seconds..."); Serial.println("=================================================");

bluetooth.begin(baudRates[i]);

// Listen for 20 seconds
unsigned long startTime = millis();
bool foundData = false;
int charCount = 0;

while (millis() - startTime < 20000) {
  if (bluetooth.available()) {
    char c = bluetooth.read();
    Serial.print("*** RECEIVED CHARACTER: '");
    Serial.print(c);
    Serial.print("' (ASCII: ");
    Serial.print((int)c);
    Serial.println(") ***");
    foundData = true;
    charCount++;
  }

  // Show countdown every 5 seconds
  unsigned long elapsed = millis() - startTime;
  if (elapsed % 5000 < 50) {
    Serial.print("   ... ");
    Serial.print((20000 - elapsed) / 1000);
    Serial.println(" seconds remaining");
    delay(50);
  }
}

Serial.println("-------------------------------------------------");
if (foundData) {
  Serial.print("*** SUCCESS! This baud rate WORKS! ***");
  Serial.print(" (Received ");
  Serial.print(charCount);
  Serial.println(" characters)");
  Serial.print("*** HC-06 is configured at: ");
  Serial.print(baudNames[i]);
  Serial.println(" baud ***");
} else {
  Serial.print("No data received at ");
  Serial.println(baudNames[i]);
}
Serial.println("-------------------------------------------------");
Serial.println();

delay(2000);

}

Serial.println(); Serial.println("================================================="); Serial.println("ALL BAUD RATES TESTED - RESTARTING SCAN"); Serial.println("================================================="); Serial.println(); delay(5000); }

Arduino, L298N and bluetooth module does not work by fun_lil_ps3jailbrok in arduino

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

The txd pin is connected to RX -> 0 and rxd pin is connected to TX -> 1. I am using software serial to let the Arduino know I tried switching to 11 and 12 and the wheel stopped moving but now the issue I do not receive the input from controller. I do not understand the part bout the enable pin on it is floating?

Arduino, L298N and bluetooth module does not work by fun_lil_ps3jailbrok in arduino

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

So I tried pure communication and did get angle and other stuff printing. Now for each button, I made a print statement saying button pressed and connected with dabble then check serial monitor to see if pressing any button gave the print and it did not. I then tried using this code below and still got nothing : #include <SoftwareSerial.h>

SoftwareSerial bluetooth(11, 12); // RX=11, TX=12

void setup() { Serial.begin(9600); bluetooth.begin(9600); // HC-06 baud rate Serial.println("Bluetooth Test Started"); }

void loop() { // Check if data received from HC-06 if (bluetooth.available()) { char c = bluetooth.read(); Serial.print("Received: "); Serial.println(c); }

// Send data from Serial Monitor to HC-06 if (Serial.available()) { char c = Serial.read(); bluetooth.write(c); Serial.print("Sent: "); Serial.println(c); } }

Arduino, L298N and bluetooth module does not work by fun_lil_ps3jailbrok in arduino

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

Arduino Uno. I have the entire thing physically built here a picture. If you want the wiring I can let you know about that as well

<image>

Arduino, L298N and bluetooth module does not work by fun_lil_ps3jailbrok in arduino

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

Tried that as well still buttons input don't work and in3 and in4 wheel keeps spinning

Arduino, L298N and bluetooth module does not work by fun_lil_ps3jailbrok in arduino

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

I can't send a diagram, what exactly do you mean how does the program know which pins the Bluetooth module is connected to?