-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathSsd1306.cs
110 lines (96 loc) · 4.41 KB
/
Ssd1306.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
106
107
108
109
110
// 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.Gpio;
using System.Device.I2c;
using Iot.Device.Ssd13xx.Commands;
namespace Iot.Device.Ssd13xx
{
/// <summary>
/// A single-chip CMOS OLED/PLED driver with controller for organic/polymer
/// light emitting diode dot-matrix graphic display system.
/// </summary>
public class Ssd1306 : Ssd13xx
{
/// <summary>
/// Default I2C bus address.
/// </summary>
public const byte DefaultI2cAddress = 0x3C;
/// <summary>
/// Secondary I2C bus address.
/// </summary>
public const byte SecondaryI2cAddress = 0x3D;
private bool _disposed = false;
/// <summary>
/// Initializes a new instance of the <see cref="Ssd1306" /> class.
/// A single-chip CMOS OLED/PLED driver with controller for organic/polymer
/// light emitting diode dot-matrix graphic display system.
/// </summary>
/// <param name="i2cDevice">The I2C device used for communication.</param>
/// <param name="resetPin">Reset pin (some displays might be wired to share the microcontroller's
/// reset pin).</param>
public Ssd1306(I2cDevice i2cDevice, int resetPin = -1) : base(i2cDevice, DisplayResolution.OLED128x64, DisplayOrientation.Landscape, resetPin)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="Ssd1306" /> class.
/// A single-chip CMOS OLED/PLED driver with controller for organic/polymer
/// light emitting diode dot-matrix graphic display system.
/// </summary>
/// <param name="i2cDevice">The I2C device used for communication.</param>
/// <param name="res">Display resolution.</param>
/// <param name="orientation">Rotation of the display with reference to the hardware's default orientation.</param>
/// <param name="resetPin">Reset pin (some displays might be wired to share the microcontroller's
/// reset pin).</param>
/// <param name="gpio">Gpio Controller.</param>
/// <param name="shouldDispose">True to dispose the GpioController.</param>
public Ssd1306(I2cDevice i2cDevice, DisplayResolution res, DisplayOrientation orientation = DisplayOrientation.Landscape, int resetPin = -1, GpioController gpio = null, bool shouldDispose = true) : base(i2cDevice, res, orientation, resetPin, gpio, shouldDispose)
{
}
/// <summary>
/// Sends command to the device.
/// </summary>
/// <param name="command">Command being send.</param>
public void SendCommand(ISsd1306Command 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 a command to the display controller.
/// </summary>
/// <param name="command">The command to send to the display controller.</param>
private void SendCommand(ICommand command)
{
SpanByte commandBytes = command?.GetBytes();
if (commandBytes.Length == 0)
{
throw new ArgumentNullException(nameof(command), "Argument is either null or there were no bytes to send.");
}
SpanByte writeBuffer = SliceGenericBuffer(commandBytes.Length + 1);
writeBuffer[0] = 0x00; // Control byte
commandBytes.CopyTo(writeBuffer.Slice(1));
// Be aware there is a Continuation Bit in the Control byte and can be used
// to state (logic LOW) if there is only data bytes to follow.
// This binding separates commands and data by using SendCommand and SendData.
_i2cDevice.Write(writeBuffer);
}
/// <summary>
/// Internal cleanup.
/// </summary>
/// <param name="disposing">Should dispose managed resources.</param>
protected override void Dispose(bool disposing)
{
if (_disposed)
{
return;
}
if (disposing)
{
base.Dispose(disposing);
_disposed = true;
}
}
}
}