您的位置:首页 > 大数据 > 物联网

张高兴的 Windows 10 IoT 开发笔记:0.96 寸 I2C OLED

2020-01-15 09:33 876 查看

This is a Windows 10 IoT Core project on the Raspberry Pi 2/3, coded by C#.

GitHub:https://github.com/ZhangGaoxing/windows-iot-demo/tree/master/OLED

Image

Connect

  • SDA - Pin3
  • SCL - Pin5
  • VCC - 5V
  • GND - GND

Reference

https://github.com/ZhangGaoxing/windows-iot-demo/tree/master/OLED/Reference

What Contains

In OLED.cs file

/// <summary>
/// Initialize the OLED
/// </summary>
public async Task InitializeAsync();

/// <summary>
/// Show character on OLED
/// </summary>
/// <param name="x">x-coordinate</param>
/// <param name="y">y-coordinate / 8 !!!</param>
/// <param name="width">Character Width</param>
/// <param name="height">Character Height</param>
/// <param name="charData">Character Data (common-cathode, column-row, and reverse ou
public void ShowChar(int x, int y, byte width, byte height, byte[] charData);

/// <summary>
/// Send command
/// </summary>
/// <param name="command">Command</param>
private void WriteCommand(byte command);

/// <summary>
/// Send the data which you want to show on the OLED
/// </summary>
/// <param name="data">Data</param>
public void WriteData(byte data);

/// <summary>
/// Set start point (cursor)
/// </summary>
/// <param name="x">x-coordinate</param>
/// <param name="y">y-coordinate / 8 !!!</param>
public void SetPoint(int x, int y);

/// <summary>
/// Fill the OLED with data (input 0xFF to fill, 0x00 to clear)
/// </summary>
public void FillScreen(byte data1, byte data2);

/// <summary>
/// Cleanup
/// </summary>
public void Dispose();

/// <summary>
/// Init command
/// </summary>
private void InitCommand();

How to Use

  • First, you need to create a OLED object. After that you should call InitializeAsync() to initialize.
OLED oled = new OLED();
await oled.InitializeAsync();
  • Secondly
oled.ShowChar(0, 0, 16, 16, bytes);
  • If you want to close the sensor, call Dispose().
oled.Dispose();

转载于:https://www.cnblogs.com/zhanggaoxing/p/8259026.html

  • 点赞
  • 收藏
  • 分享
  • 文章举报
ahuihun5901 发布了0 篇原创文章 · 获赞 0 · 访问量 769 私信 关注
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: