Johnny's Other Place 3
1:42
2 ай бұрын
Johnny's Other Place 2
1:11
2 ай бұрын
Johnny's Other Side
0:31
2 ай бұрын
Amazon Burgler
0:58
2 ай бұрын
ELO - Sweet Talkin' Woman
3:11
5 ай бұрын
ELO - Can't Get It Out Of My Head
4:28
ELO - Mr Blue Sky
5:20
5 ай бұрын
ELO - Fire On High
4:24
5 ай бұрын
ELO - Strange Magic
3:38
5 ай бұрын
ELO - Do Ya
4:13
5 ай бұрын
ELO - Do Ya
4:13
5 ай бұрын
ELO - Don't Bring Me Down
5:08
5 ай бұрын
LRB - Lady
5:23
5 ай бұрын
LRB - Lonesome Loser
4:32
5 ай бұрын
LRB - Cool Change
4:05
5 ай бұрын
LRB - Night Owl
1:23
5 ай бұрын
LRB - Hold On
4:07
5 ай бұрын
LRB Reminiscing - Part B
0:37
5 ай бұрын
Skipping with Friends
3:29
Жыл бұрын
Skipping with Friends 2
3:28
Жыл бұрын
Пікірлер
@57TheBoomer
@57TheBoomer Ай бұрын
I have mx player pro and that option that you show isn't there, as far as I can see there is no way of turning off the subtitles.
@user-ib8tl7cp7w
@user-ib8tl7cp7w Ай бұрын
Can you send code
@breezegtz8498
@breezegtz8498 3 ай бұрын
F ex ex No se te olvide que te 😅😅😅😅
@benmullen8999
@benmullen8999 3 ай бұрын
ONE Night of Queen
@aldiriswandi4655
@aldiriswandi4655 4 ай бұрын
error : 2. how can i do to solve this problem. this is caused by main program loop exceded, even i never change or add on original codes
@hikolanikola8775
@hikolanikola8775 5 ай бұрын
the idea that i want is to make the servo push the load cell at certain force.
@user-wv8gg6jg9c
@user-wv8gg6jg9c 5 ай бұрын
Can you share me the code? Please
@koslim
@koslim 8 ай бұрын
opensubs stopped providing free subs on cinema...just appears a link to pay for registration..any ideas?
@user-rw7ik4jy3h
@user-rw7ik4jy3h 8 ай бұрын
terrible video. use a computer
@charuscharm
@charuscharm 8 ай бұрын
Can you please please give a link to download this version(2.5.2) of hd cinema on android tv?
@philalm1925
@philalm1925 9 ай бұрын
Did you have to use VLC or MX player?
@res2968
@res2968 10 ай бұрын
How do you update the app??
@darrellf7625
@darrellf7625 Жыл бұрын
😄 *Promo sm*
@johnyb732
@johnyb732 Жыл бұрын
can you share the code with me please
@fakhrulalif4173
@fakhrulalif4173 Жыл бұрын
can hx711 and servo motor connect to esp8266.Can you make a coding using esp8266
@bitario723
@bitario723 2 жыл бұрын
Awesome. When you mention speed, are you referring to the speed of the servo or the latency from joystick input to servo response?
@anthonymaggio7255
@anthonymaggio7255 2 жыл бұрын
The end to end response (speed) of the system. When I press the force transducer, the servo immediately responds and quickly goes to the position I am commanding by the amount of force I am commanding (pressing). The servo also quickly returns back to a lesser position as I release pressure on the force transducer. The servo also returns to it's 'Zero position when I release all pressure on the Force Transducer. Check out my earlier video with the HX711 amplifier operating at only 10 MHz instead of 80 MHz like in this video.
@anthonymaggio7255
@anthonymaggio7255 2 жыл бұрын
Here is the Sketch I Made/Used (Since some of you asked a while ago...) Pressure/Force Moves Servo Position (Arduino Uno or MKR) /* Controlling a servo position using a potentiometer (variable resistor) */ #include <Servo.h> #include <HX711_ADC.h> Servo myservo; // create servo object to control a servo //HX711 constructor (dout pin, sck pin)4,5 HX711_ADC LoadCell(4, 5); int potpin = 0; // analog pin used to connect the potentiometer int val; // variable to read the value from the analog pin float ii; float vv; long t; void setup() { myservo.attach(9); // attaches the servo on pin 9 to the servo object ... Use 8 for MKRZero Serial.begin(9600); Serial.println("Wait..."); LoadCell.begin(); long stabilisingtime = 2000; // tare preciscion can be improved by adding a few seconds of stabilising time LoadCell.start(stabilisingtime); LoadCell.setCalFactor(696.0); // user set calibration factor (float) Serial.println("Startup + tare is complete"); } void loop() { //update() should be called at least as often as HX711 sample rate; >10Hz@10SPS, >80Hz@80SPS //longer delay in scetch will reduce effective sample rate (be carefull with delay() in loop) LoadCell.update(); //get smoothed value from data set + current calibration factor if (millis() > t + 1) { float i = LoadCell.getData(); ii = i; float v = LoadCell.getCalFactor(); vv = v; Serial.print("Load_cell output val: "); Serial.print(i); Serial.print(" Load_cell calFactor: "); Serial.println(v); t = millis(); } //receive from serial terminal //if (Serial.available() > 0) { // float i; // char inByte = Serial.read(); // if (inByte == 'l') i = -1.0; // else if (inByte == 'L') i = -10.0; // else if (inByte == 'h') i = 1.0; // else if (inByte == 'H') i = 10.0; // else if (inByte == 't') LoadCell.tareNoDelay(); // if (i != 't') { // float v = LoadCell.getCalFactor() + i; // LoadCell.setCalFactor(v); // } //val = analogRead(potpin); // reads the value of the potentiometer (value between 0 and 1023) val = ii; val = map(val, -300, 300, 60, 120); // (val, -300, 300, 60,120) scale it to use it with the servo (value between 0 and 180) myservo.write(val); // sets the servo position according to the scaled value delay(1); // waits for the servo to get there } //check if last tare operation is complete // if (LoadCell.getTareStatus() == true) { // Serial.println("Tare complete"); //} //}
@anthonymaggio7255
@anthonymaggio7255 2 жыл бұрын
Load Cell to HX711 Connections Red Wire to E+ Black Wire to E- White Wire to A- Green Wire to A+ HX711 to Arduino Uno Connections GND (Black Wire) to GND DT (Purple Wire) to Pin 5 (Digital) {This may be PIN 4?} SCK (Yellow Wire) to Pin 4 (Digital) {This may be PIN5?} VCC (Red Wire) to 5V Servo to Arduino Uno Connections Power to 5V GND to GND Signal Wire to Pin 9 (Digital)
@infotechpkk
@infotechpkk Жыл бұрын
Dear minimum weight? maximum weight ? How much for left and right
@izzdin158
@izzdin158 3 жыл бұрын
Hello can u share your coding n your wirering
@nurainrasid9863
@nurainrasid9863 2 жыл бұрын
Did you get the code? Can i have it too
@izzdin158
@izzdin158 2 жыл бұрын
@@nurainrasid9863 xde dpt pon🤣🤣
@nurainrasid9863
@nurainrasid9863 2 жыл бұрын
@@izzdin158 pastu kiranya project jadi ke tak? Ke tukar pakai benda lain?
@izzdin158
@izzdin158 2 жыл бұрын
@@nurainrasid9863 dia separuh ja menjadi pastu tukar projek lain sbb terlalu sukar nk tetapkan berat yg tepat..just jadikatsensor berat ni sebagai suis on off ja
@anthonymaggio7255
@anthonymaggio7255 2 жыл бұрын
code shared
@shehabmansoor4693
@shehabmansoor4693 4 жыл бұрын
So you did it??
@snirronen7853
@snirronen7853 4 жыл бұрын
Can you please share the code?
@anthonymaggio7255
@anthonymaggio7255 2 жыл бұрын
code shared
@mrifkigunawan2325
@mrifkigunawan2325 4 жыл бұрын
pleae share code
@anthonymaggio7255
@anthonymaggio7255 2 жыл бұрын
code sharred
@mualfah6233
@mualfah6233 5 жыл бұрын
can u share the code and wiring?? thanks
@anthonymaggio7255
@anthonymaggio7255 2 жыл бұрын
code shared
@everythingeverytime4367
@everythingeverytime4367 5 жыл бұрын
I also need please
@anthonymaggio7255
@anthonymaggio7255 2 жыл бұрын
code shared
@arudraashok67
@arudraashok67 5 жыл бұрын
Can you please share the code and wiring connections
@anthonymaggio7255
@anthonymaggio7255 2 жыл бұрын
code shared