Bitcoin Forum
May 02, 2024, 01:06:45 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [BTC Reward] I would need some help for a custom DJ Hero Turntable case  (Read 107 times)
dissi_xD (OP)
Member
**
Offline Offline

Activity: 181
Merit: 65


View Profile WWW
January 03, 2023, 12:10:07 PM
Last edit: January 03, 2023, 03:04:24 PM by dissi_xD
 #1

Hi,

i'm a huge fan of the DJ Hero series, it's a great game in my opinion. The only thing that isn't that great are the turntables; Them broke easy. So i wanted to create a case out of wood (i've asked a friend of mine for that). But now comes the neat part: i don't want a simple wood case on which i fix the turntable, i want to make some accessoires with LEDs. Like some blue LEDs around which turn on, when i press the euphoria button and some other blue LEDs, red LEDs and green LEDs which turn on, when i press the (green/red/blue) buttons. It would also be great that they make some tripy effects when i scratch or something like that.

Has someone an idea on how to realise this? Is this idea even possible?

I know i would need some sensor for the Wii remote which controlls then the LEDs.

Now i'm no electrical engineer (i learned a bit at school but wasn't that good tbh). So if someone could tell me what parts i need to buy and how to build everything, that would be great.

Also there needs to be some programming to do (i imagine), that the LEDs know what to do, when a button gets pressed. I've also learbed some programming at school but there i also wasn't that good^^ So if someone could write me that code would be great Cheesy

Now to the rewards:
  • For the programming part i would give away 200$ in BTC (if there is more to do, i'm also willing to give away more BTC)
  • For the electronic part with LEDs, Sensors and what ever, i would give away 60$ in BTC if you can provide me links to the needed items and a manual on how to assemble them

I would suggest that everyone who wants to help me should send me a PM and i will comment here if i've found one who helps me with part one/part two, to let you know.

Thanks for your help everyone Smiley

---
Edit: would be nice if someone could help me who has also a Wii and DJ Hero for testing purposes.

Even in the event that an attacker gains more than 50% of the network's computational power, only transactions sent by the attacker could be reversed or double-spent. The network would not be destroyed.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714612005
Hero Member
*
Offline Offline

Posts: 1714612005

View Profile Personal Message (Offline)

Ignore
1714612005
Reply with quote  #2

1714612005
Report to moderator
1714612005
Hero Member
*
Offline Offline

Posts: 1714612005

View Profile Personal Message (Offline)

Ignore
1714612005
Reply with quote  #2

1714612005
Report to moderator
1714612005
Hero Member
*
Offline Offline

Posts: 1714612005

View Profile Personal Message (Offline)

Ignore
1714612005
Reply with quote  #2

1714612005
Report to moderator
mendace
Sr. Member
****
Offline Offline

Activity: 462
Merit: 613


Pizza Maker 2023 | Bitcoinbeer.events


View Profile WWW
January 08, 2023, 10:11:17 PM
 #2

It sounds like you have an interesting project in mind! It's definitely possible to add LED lighting to your DJ Hero turntable controller, and to have the LEDs respond to different buttons being pressed on the controller.

To get started, you will need:

LEDs (in the colors you want to use)
A microcontroller (such as an Arduino) to control the LEDs
Sensors to detect when buttons are pressed on the controller
A power supply for the LEDs and microcontroller
Wiring to connect everything together
As for programming, you will need to write code to control the microcontroller and the LEDs. The code will need to read the input from the sensors and turn the LEDs on or off accordingly.

To get more specific guidance on what parts to buy and how to assemble them, it would be helpful to know more about your skill level and experience with electronics and programming. Based on what you've mentioned, it might be helpful for you to start with some online tutorials or courses to learn the basics of microcontrollers and programming before diving into this project. There are many resources available online that can help you learn the necessary skills, and once you have a better understanding of the concepts involved, it will be easier to get specific guidance on your project.

Here is an example of code that you could use to control an LED using an Arduino microcontroller:

int LED_pin = 13; // LED is connected to digital pin 13

void setup() {
  // Set the LED pin as an output
  pinMode(LED_pin, OUTPUT);
}

void loop() {
  // Turn the LED on
  digitalWrite(LED_pin, HIGH);
  // Wait for 1 second
  delay(1000);
  // Turn the LED off
  digitalWrite(LED_pin, LOW);
  // Wait for 1 second
  delay(1000);
}
 


This code will cause the LED to turn on for 1 second, then turn off for 1 second, in a continuous loop.

To modify this code to respond to button presses on your controller, you will need to add some additional code to read the input from the button sensors and turn the LED on or off accordingly. You could use a similar approach to the one shown above, using an if statement to check the sensor input and turn the LED on or off based on the sensor reading.

I hope this example helps to give you an idea of how you might approach the programming for your project. Let me know if you have any questions or if you need further guidance.
dissi_xD (OP)
Member
**
Offline Offline

Activity: 181
Merit: 65


View Profile WWW
January 10, 2023, 07:26:12 AM
Last edit: January 10, 2023, 07:52:15 AM by dissi_xD
 #3

It sounds like you have an interesting project in mind! It's definitely possible to add LED lighting to your DJ Hero turntable controller, and to have the LEDs respond to different buttons being pressed on the controller.

To get started, you will need:

LEDs (in the colors you want to use)
A microcontroller (such as an Arduino) to control the LEDs
Sensors to detect when buttons are pressed on the controller
A power supply for the LEDs and microcontroller
Wiring to connect everything together
As for programming, you will need to write code to control the microcontroller and the LEDs. The code will need to read the input from the sensors and turn the LEDs on or off accordingly.

To get more specific guidance on what parts to buy and how to assemble them, it would be helpful to know more about your skill level and experience with electronics and programming. Based on what you've mentioned, it might be helpful for you to start with some online tutorials or courses to learn the basics of microcontrollers and programming before diving into this project. There are many resources available online that can help you learn the necessary skills, and once you have a better understanding of the concepts involved, it will be easier to get specific guidance on your project.

Here is an example of code that you could use to control an LED using an Arduino microcontroller:

int LED_pin = 13; // LED is connected to digital pin 13

void setup() {
  // Set the LED pin as an output
  pinMode(LED_pin, OUTPUT);
}

void loop() {
  // Turn the LED on
  digitalWrite(LED_pin, HIGH);
  // Wait for 1 second
  delay(1000);
  // Turn the LED off
  digitalWrite(LED_pin, LOW);
  // Wait for 1 second
  delay(1000);
}
 


This code will cause the LED to turn on for 1 second, then turn off for 1 second, in a continuous loop.

To modify this code to respond to button presses on your controller, you will need to add some additional code to read the input from the button sensors and turn the LED on or off accordingly. You could use a similar approach to the one shown above, using an if statement to check the sensor input and turn the LED on or off based on the sensor reading.

I hope this example helps to give you an idea of how you might approach the programming for your project. Let me know if you have any questions or if you need further guidance.

Hi, thanks for your answer Smiley

So my skills are not that good, i understand your code perfectly, also the if statement is some kind of logical to me. But i've never soldered for example. This was part of the first class which i have skipped (since i made a carieer change). In the second and third class we always made this with a pinboard. I also don't own a soldering iron. Also i didn't know much about on how to connect everything. I guess if you give me a wiring diagram the most part i would understand. But some things i might would ask.

For the parts needed:
  • LEDs: no problem, it's one of the easiest things
  • Wiring: also easy
  • Microcontroller: should also be easy; if a Raspberry Pi would also do it (which it should), i have one at home
  • Sensor: thats the neat part - which sensor? As far as i've read it should be a bluetooth sensor, but is every bluetooth sensor compatible or only some specific?

Looking forward to hear from you Smiley

Edit: i guess i also need some resistors for the LEDs, right?

dissi_xD (OP)
Member
**
Offline Offline

Activity: 181
Merit: 65


View Profile WWW
January 10, 2023, 10:45:21 AM
 #4

Another question: do i need a bluetooth sensor if i use a Raspberry Pi? Since the Raspberry Pi has build in bluetooth. Can't i connect it over that? (If it's true that i need a bluetooth sensor)

dissi_xD (OP)
Member
**
Offline Offline

Activity: 181
Merit: 65


View Profile WWW
January 11, 2023, 07:24:37 AM
 #5

Now i stumble over another question which could be that the whole project wont work: if i connect the wiimote to the Raspberry, would it still be possible to connect it to the wii? Since it would must connect to two devices, the wii and the Raspberry...

BlackHatCoiner
Legendary
*
Offline Offline

Activity: 1512
Merit: 7340


Farewell, Leo


View Profile
January 12, 2023, 02:02:01 PM
 #6

I think a more proper board for this thread is Services, because you want to buy some service from someone else. But Project Development does fit too. It's just that it has lower activity than the other.

Another question: do i need a bluetooth sensor if i use a Raspberry Pi? Since the Raspberry Pi has build in bluetooth. Can't i connect it over that? (If it's true that i need a bluetooth sensor)
Raspberry Pi 4 does come bluetooth, indeed.

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!