-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathSsd1327.cs
105 lines (90 loc) · 3.51 KB
/
Ssd1327.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Device.I2c;
using Iot.Device.Ssd13xx.Commands;
using Ssd1327Cmnds = Iot.Device.Ssd13xx.Commands.Ssd1327Commands;
namespace Iot.Device.Ssd13xx
{
/// <summary>
/// Represents SSD1327 OLED display.
/// </summary>
public class Ssd1327 : Ssd13xx
{
private const byte CommandMode = 0x80;
private const byte DataMode = 0x40;
private const int CleaningBufferSize = 48 * 96;
/// <summary>
/// Initializes a new instance of the <see cref="Ssd1327" /> class.
/// </summary>
/// <param name="i2cDevice">The I2C device used for communication.</param>
public Ssd1327(I2cDevice i2cDevice)
: base(i2cDevice)
{
}
/// <summary>
/// Sets column address.
/// </summary>
/// <param name="startAddress">Start address.</param>
/// <param name="endAddress">End address.</param>
public void SetColumnAddress(byte startAddress = 0x08, byte endAddress = 0x37) => SendCommand(new Ssd1327Cmnds.SetColumnAddress(startAddress, endAddress));
/// <summary>
/// Sets row address.
/// </summary>
/// <param name="startAddress">Start address.</param>
/// <param name="endAddress">End address.</param>
public void SetRowAddress(byte startAddress = 0x00, byte endAddress = 0x5f) => SendCommand(new Ssd1327Cmnds.SetRowAddress(startAddress, endAddress));
/// <summary>
/// Clears the display.
/// </summary>
public void ClearDisplay()
{
SendCommand(new SetDisplayOff());
SetColumnAddress();
SetRowAddress();
byte[] data = new byte[CleaningBufferSize];
SendData(data);
SendCommand(new SetDisplayOn());
}
/// <summary>
/// Send a command to the display controller.
/// </summary>
/// <param name="command">The command to send to the display controller.</param>
public void SendCommand(byte command)
{
SpanByte writeBuffer = new byte[] { CommandMode, command };
_i2cDevice.Write(writeBuffer);
}
/// <summary>
/// Sends command to the device.
/// </summary>
/// <param name="command">Command being send.</param>
public void SendCommand(ISsd1327Command command) => SendCommand((ICommand)command);
/// <summary>
/// Sends command to the device.
/// </summary>
/// <param name="command">Command being send.</param>
public override void SendCommand(ISharedCommand command) => SendCommand(command);
/// <summary>
/// Send data to the display controller.
/// </summary>
/// <param name="data">The data to send to the display controller.</param>
public void SendData(byte data)
{
SpanByte writeBuffer = new byte[] { DataMode, data };
_i2cDevice.Write(writeBuffer);
}
private void SendCommand(ICommand command)
{
byte[] commandBytes = command.GetBytes();
if (commandBytes.Length == 0)
{
throw new ArgumentException(nameof(command), "Argument is either null or there were no bytes to send.");
}
foreach (var item in commandBytes)
{
SendCommand(item);
}
}
}
}