UdonLibrary 1.0.0
機械システム研究部 C++ ライブラリ
読み取り中…
検索中…
一致する文字列を見つけられません
Pad.hpp
[詳解]
1//
2// コントローラー
3//
4// Copyright (c) 2022-2024 udonrobo
5//
6
7#pragma once
8
9// Arduino
10#ifdef ARDUINO
11
12# include "Can.hpp"
13# include "I2c.hpp"
14# include "Serial.hpp"
15# include "Pad/PadPS5.hpp"
16# include "LoRa.hpp"
17
18
19namespace Udon
20{
21 using CanPadPS5 = PadPS5<CanReader>;
22 using I2cPadPS5 = PadPS5<I2cMasterReader>;
23 using SerialPadPS5 = PadPS5<SerialReader>;
24
25 using E220PadPS5 = PadPS5<E220Reader>;
26} // namespace Udon
27
28#endif
29
30
31// OpenSiv3D
32#ifdef SIV3D_INCLUDED
33
34# include "Pad/SivPadPS5.hpp"
35
36namespace Udon
37{
38 using SivPadPS5 = PadPS5<Impl::SivPadPS5Reader>;
39} // namespace Udon
40
41#endif
Definition Bit.hpp:12
PadPS5< Impl::SivPadPS5Reader > SivPadPS5
OpenSiv3D用 PS5コントローラー
Definition SivPadPS5.hpp:81