-
Notifications
You must be signed in to change notification settings - Fork 598
/
Copy pathSegment.cs
70 lines (60 loc) · 1.39 KB
/
Segment.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Iot.Device.Display
{
/// <summary>
/// Individual segment bits
/// </summary>
/// <remarks>
/// --0--
/// | |
/// 5 1
/// | |
/// --6--
/// | |
/// 4 2
/// | |
/// --3-- . 7
/// </remarks>
[Flags]
public enum Segment : byte
{
/// <summary>
/// No segment
/// </summary>
None = 0b0000_0000,
/// <summary>
/// Top segment
/// </summary>
Top = 0b0000_0001,
/// <summary>
/// Top right segment
/// </summary>
TopRight = 0b0000_0010,
/// <summary>
/// Bottom right segment
/// </summary>
BottomRight = 0b0000_0100,
/// <summary>
/// Bottom segment
/// </summary>
Bottom = 0b0000_1000,
/// <summary>
/// Bottom left segment
/// </summary>
BottomLeft = 0b0001_0000,
/// <summary>
/// Top left segment
/// </summary>
TopLeft = 0b0010_0000,
/// <summary>
/// Middle segment
/// </summary>
Middle = 0b0100_0000,
/// <summary>
/// Dot
/// </summary>
Dot = 0b1000_0000
}
}