| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- #include <PS2X_lib.h> //for v1.6
- /******************************************************************
- * set pins connected to PS2 controller:
- * - 1e column: original
- * - 2e colmun: Stef?
- * replace pin numbers by the ones you use
- ******************************************************************/
- // ESP32 pin
- // https://github.com/espressif/arduino-esp32/blob/master/docs/esp32_pinmap.png
- #define PS2_DAT 19 //MISO 19
- #define PS2_CMD 23 //MOSI 23
- #define PS2_SEL 5 //SS 5
- #define PS2_CLK 18 //SLK 18
- /******************************************************************
- * select modes of PS2 controller:
- * - pressures = analog reading of push-butttons
- * - rumble = motor rumbling
- * uncomment 1 of the lines for each mode selection
- ******************************************************************/
- #define pressures false
- #define rumble false
- PS2X ps2x; // create PS2 Controller Class
- //right now, the library does NOT support hot pluggable controllers, meaning
- //you must always either restart your Arduino after you connect the controller,
- //or call config_gamepad(pins) again after connecting the controller.
- int error = -1;
- byte type = 0;
- byte vibrate = 0;
- int tryNum = 1;
- void setup(){
- // 115200
- Serial.begin(115200);
- //added delay to give wireless ps2 module some time to startup, before configuring it
- //CHANGES for v1.6 HERE!!! **************PAY ATTENTION*************
- while (error != 0) {
- delay(1000);// 1 second wait
- //setup pins and settings: GamePad(clock, command, attention, data, Pressures?, Rumble?) check for error
- error = ps2x.config_gamepad(PS2_CLK, PS2_CMD, PS2_SEL, PS2_DAT, pressures, rumble);
- Serial.print("#try config ");
- Serial.println(tryNum);
- tryNum ++;
- }
- Serial.println(ps2x.Analog(1), HEX);
- type = ps2x.readType();
- switch(type) {
- case 0:
- Serial.println(" Unknown Controller type found ");
- break;
- case 1:
- Serial.println(" DualShock Controller found ");
- break;
- case 2:
- Serial.println(" GuitarHero Controller found ");
- break;
- case 3:
- Serial.println(" Wireless Sony DualShock Controller found ");
- break;
- }
- }
- void loop() {
- if(type == 1){ //DualShock Controller
- ps2x.read_gamepad(false, vibrate); //read controller and set large motor to spin at 'vibrate' speed
- //will be TRUE as long as button is pressed
- if(ps2x.Button(PSB_START))
- Serial.println("Start is being held");
- if(ps2x.Button(PSB_SELECT))
- Serial.println("Select is being held");
- //will be TRUE as long as button is pressed
- if(ps2x.Button(PSB_PAD_UP)) {
- Serial.print("Up held this hard: ");
- Serial.println(ps2x.Analog(PSAB_PAD_UP), DEC);
- }
- if(ps2x.Button(PSB_PAD_RIGHT)){
- Serial.print("Right held this hard: ");
- Serial.println(ps2x.Analog(PSAB_PAD_RIGHT), DEC);
- }
- if(ps2x.Button(PSB_PAD_LEFT)){
- Serial.print("LEFT held this hard: ");
- Serial.println(ps2x.Analog(PSAB_PAD_LEFT), DEC);
- }
- if(ps2x.Button(PSB_PAD_DOWN)){
- Serial.print("DOWN held this hard: ");
- Serial.println(ps2x.Analog(PSAB_PAD_DOWN), DEC);
- }
- vibrate = ps2x.Analog(PSAB_CROSS); //this will set the large motor vibrate speed based on how hard you press the blue (X) button
- if (ps2x.NewButtonState()) { //will be TRUE if any button changes state (on to off, or off to on)
- if(ps2x.Button(PSB_L3))
- Serial.println("L3 pressed");
- if(ps2x.Button(PSB_R3))
- Serial.println("R3 pressed");
- if(ps2x.Button(PSB_L2))
- Serial.println("L2 pressed");
- if(ps2x.Button(PSB_R2))
- Serial.println("R2 pressed");
- if(ps2x.Button(PSB_TRIANGLE))
- Serial.println("△ pressed");
- }
- //△□○×
- if(ps2x.ButtonPressed(PSB_CIRCLE)) //will be TRUE if button was JUST pressed
- Serial.println("○ just pressed");
- if(ps2x.NewButtonState(PSB_CROSS)) //will be TRUE if button was JUST pressed OR released
- Serial.println("× just changed");
- if(ps2x.ButtonReleased(PSB_SQUARE)) //will be TRUE if button was JUST released
- Serial.println("□ just released");
- if(ps2x.Button(PSB_L1) || ps2x.Button(PSB_R1)) { //print stick values if either is TRUE
- Serial.print("Stick Values:");
- Serial.print(ps2x.Analog(PSS_LY)); //Left stick, Y axis. Other options: LX, RY, RX
- Serial.print(",");
- Serial.print(ps2x.Analog(PSS_LX), DEC);
- Serial.print(",");
- Serial.print(ps2x.Analog(PSS_RY), DEC);
- Serial.print(",");
- Serial.println(ps2x.Analog(PSS_RX), DEC);
- }
- }
- delay(50);
- }
|