当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing SPI.close()用法及代码示例


Processing, 类SPI中的close()用法介绍。

用法

  • .close()

返回

  • void

说明

关闭 SPI 接口 通常不需要显式关闭 SPI 接口,因为它们会在程序退出时由操作系统自动关闭。注意:一次可以有两个或多个对象使用相同的接口。

例子

import processing.io.*;
SPI adc;

void setup() {
  //printArray(SPI.list());
  adc = new SPI(SPI.list()[0]);
  adc.settings(500000, SPI.MSBFIRST, SPI.MODE0);
  // read in a value over SPI from an analog-to-digital
  // converter
  // dummy write, actual values don't matter
  byte[] out = { 0, 0 };
  byte[] in = adc.transfer(out);
  // some input bit shifting according to the datasheet
  int val = ((in[0] & 0x1f) << 5) | ((in[1] & 0xf8) >> 3);
  // val is between 0 and 1023
  println(val);
  // and close interface again
  adc.close();
}

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 SPI.close()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。