m5stack-avatar
Loading...
Searching...
No Matches
Expression.h
1// Copyright (c) Shinya Ishikawa. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for full
3// license information.
4
5#ifndef EXPRESSION_H_
6#define EXPRESSION_H_
7
8namespace m5avatar {
9// facial expression keys
10// NOTE what is difference between expression & emotion?
11enum class Expression : uint8_t {
12 kNeutral = 0,
13 kHappy,
14 kAngry,
15 kSad,
16 kDoubt,
17 kSleepy,
18 kSmile,
19 kLaugh,
20 kSurprised,
21 kRelax,
22};
23} // namespace m5avatar
24
25#endif // EXPRESSION_H_