praca nad ulepszeniem write_to_buffer

This commit is contained in:
2021-05-27 07:44:22 +02:00
commit 0ece75786f
97 changed files with 104900 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
/*
* btn.h
*
* Created on: 7 kwi 2021
* Author: bartool
*/
#ifndef INC_DUALSHOCK_BUTTONS_H_
#define INC_DUALSHOCK_BUTTONS_H_
extern const uint8_t dpad_down[];
extern const uint8_t dpad_left[];
extern const uint8_t dpad_up[];
extern const uint8_t dpad_right[];
extern const uint8_t iks[];
extern const uint8_t rectangle[];
extern const uint8_t triangle[];
extern const uint8_t circle[];
extern const uint8_t l1[];
extern const uint8_t l2[];
extern const uint8_t r1[];
extern const uint8_t r2[];
extern const uint8_t l3[];
extern const uint8_t r3[];
extern const uint8_t options[];
extern const uint8_t touchbar[];
extern const uint8_t *dualshock_btn[];
#endif /* INC_DUALSHOCK_BUTTONS_H_ */