123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /*
- * Saitek X52 Arduino USB Host Shield Library.
- * Copyright 2016 by Thomas Buck <xythobuz@xythobuz.de>
- *
- * Based on the USB Host Library HID Joystick example
- * https://www.circuitsathome.com/mcu/hid-joystick-code-sample
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, version 2.
- */
-
- #include <hid.h>
- #include <hiduniversal.h>
- #include <usbhub.h>
-
- #include "hid_parser.h"
- #include "x52.h"
-
- #define ENABLE_SERIAL_PORT
- #define DEBUG_OUTPUT
-
- USB usb;
- USBHub hub(&usb);
- HIDUniversal hid(&usb);
- X52 x52(&usb, &hid);
- JoystickEventsDeadZone joyevents;
- JoystickReportParser joy(&joyevents);
-
- void setup() {
- #ifdef ENABLE_SERIAL_PORT
- Serial.begin(115200);
- #endif
-
- #ifdef DEBUG_OUTPUT
- Serial.println("Start");
- #endif
-
- if (usb.Init() == -1) {
- #ifdef DEBUG_OUTPUT
- Serial.println("OSC did not start.");
- #endif
- }
-
- delay(200);
-
- if (!hid.SetReportParser(0, &joy)) {
- ErrorMessage<uint8_t >(PSTR("SetReportParser"), 1);
- }
- }
-
- void init_joystick() {
- x52.setLEDBrightness(2);
- x52.setMFDBrightness(2);
- x52.setShift(0);
- x52.setBlink(0);
- x52.setMFDText(0, "Arduino X52 Host");
- x52.setMFDText(1, " has been ");
- x52.setMFDText(2, " initialized! ");
- }
-
- void loop() {
- usb.Task();
-
- static unsigned long lastTime = 0;
- static uint8_t initialized = 0;
- if ((millis() - lastTime) >= 1000) {
- lastTime = millis();
- if (!initialized) {
- init_joystick();
- initialized = 1;
- }
- }
-
- #ifdef DEBUG_OUTPUT
- if (Serial.available()) {
- char c = Serial.read();
- if (c == 't') {
- x52.setMFDText(0, "Arduino");
- x52.setMFDText(1, "Hello");
- x52.setMFDText(2, "World");
- } else if (c == '0') {
- x52.setMFDBrightness(0);
- } else if (c == '1') {
- x52.setMFDBrightness(1);
- } else if (c == '2') {
- x52.setMFDBrightness(2);
- } else if (c == '3') {
- x52.setLEDBrightness(0);
- } else if (c == '4') {
- x52.setLEDBrightness(1);
- } else if (c == '5') {
- x52.setLEDBrightness(2);
- } else if (c == 'q') {
- x52.setShift(1);
- } else if (c == 'w') {
- x52.setShift(0);
- } else if (c == 'a') {
- x52.setBlink(1);
- } else if (c == 's') {
- x52.setBlink(0);
- } else if (c == 'z') {
- x52.setDate(1, 1, 1);
- } else if (c == 'x') {
- x52.setTime(12, 42);
- x52.setTimeOffset(0, -120);
- x52.setTimeOffset(0, 240);
- } else {
- Serial.println("Unknown command!");
- }
- }
- #endif
- }
|