C ++直接访问电线

时间:2015-11-24 17:58:10

标签: c++ led

我想创建一个可以为电缆供电的c ++程序。就像以太网电缆中有几根电线一样。我如何选择一根电线并通过它发送电流? 如果有人能解释如何通过特定的电线发送电流,这将是很棒的。我也不想使用库。为了使它更清晰,我希望能够做这样的事情[视频] https://www.youtube.com/watch?v=H1enhkLZm10

1 个答案:

答案 0 :(得分:1)

我想这会回答你的问题:I/O Ports controlled LEDs

这是网站上有关如何与端口通信的代码片段:

#include <conio.h>
#include <dos.h> // For _out
#define port 0x378 // Port Address
#define data port+0 // Data Port of the parallel cable
void main (void)
{
  _out(data, 255); // For all lights on
  _out(data, 0); // For all lights off
}

如果您不知道计算机如何与外围设备通信,以及USB(通用串行总线),串行端口和其他端口等不同端口如何通信和工作。本指南可帮助您入门。Control Physical World Through Computer (Step by Step)