如何在jUART中将pyserial发送RGB值复制到Arduino?

时间:2016-08-09 04:16:57

标签: javascript arduino-uno pyserial

我一直在本地运行的Python应用程序中使用pyserial将RGB值发送到Arduino:

import serial
import struct

ser = serial.Serial('/dev/ttyACM0', 9600)

ser.write(struct.pack('>3B', red_value, green_value, blue_value))

# where the rgb values are ints like 77,75, 0

我现在希望从非本地网站获得此功能。

jUART似乎是为此目的而设计的,即:

  

用于串口通信的跨平台浏览器插件   JavaScript

它要求用户为他们正在使用的系统和浏览器创建插件。

我尽可能地遵循他们main GitHub page上的说明,但我并没有真正理解足够的参数来定义他们的价值观,而我还没有浏览器插件之前所以不确定我是否遗漏了什么。

我使用Ubuntu 16.04Firefox 48 for Ubuntu并复制了:

bin/Linux/npjUART.so

为:

~/.mozilla/extensions

HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Serial Test</title>
<script src="serial.js"></script>
</head>
<body>

</body>
</html>

Javascript (serial.js)

//Get a Serial object
var ser = plugin().Serial;

// Open a port
ser.open("/dev/ttyACM0");

// Set port options
/*
baud: Baud rate

parity: 0->none, 1->odd, 2->even

csize: 5 6 7 8

flow: 0->none, 1->software, 2->hardware

stop: 0->one, 1->onepointfive, 2->two
*/

var baud = "";
var parity = "";
var csize = "";
var flow = "";
var stop = "";

ser.set_option(baud, parity, csize, flow, stop);

// Send a byte to serial port
char = "";

ser.send(char);

问题

01)上面的Javascript中的空值应该是什么?

02)我还需要关注To Build instructions吗?

03)我还需要做些什么来让jUART复制上面显示的原始pyserial程序吗?

修改

根据用户建议查看pyserial默认值然后复制它们,它们似乎在这里:

https://pythonhosted.org/pyserial/pyserial_api.html#serial.Serial

__init__(port=None, baudrate=9600, bytesize=EIGHTBITS, parity=PARITY_NONE, stopbits=STOPBITS_ONE, timeout=None, xonxoff=False, rtscts=False, write_timeout=None, dsrdtr=False, inter_byte_timeout=None)

因此,也许jUART变量可能是:

var baud = 9600;
var parity = 0;
var csize = 8; // based on user comment
var flow = 0; // based on user comment
var stop = 0;

当我在html文件中打开包含上述值的js文件时,我在Firebug中获得以下内容:

  

ReferenceError:未定义插件

Arduino Sketch:(供参考)

// digital output pin numbers
const int digitalOutputPinForRedLED = 9;
const int digitalOutputPinForGreenLED = 10;
const int digitalOutputPinForBlueLED = 11;

// global variables
int valueOfRed = 0;
int valueOfGreen = 0;
int valueOfBlue = 0;
int x = 1;

void setup() {
  // initialize serial communications at 9600 bps:
  Serial.begin(9600); 

  // set digital pin modes
  pinMode(digitalOutputPinForRedLED,OUTPUT);
  pinMode(digitalOutputPinForGreenLED,OUTPUT);
  pinMode(digitalOutputPinForBlueLED,OUTPUT);
}

void loop() {

  if (Serial.available()) {
    if (x==1) {
     valueOfRed = Serial.read();
     Serial.print("Red: ");
     Serial.println(valueOfRed);
     analogWrite(digitalOutputPinForRedLED, valueOfRed);
   }
    else if (x==2) {
     valueOfGreen = Serial.read();
     Serial.print("Green: ");
     Serial.println(valueOfGreen);
     analogWrite(digitalOutputPinForGreenLED, valueOfGreen);
   }
    else if (x==3) {
     valueOfBlue = Serial.read();
     Serial.print("Blue: ");
     Serial.println(valueOfBlue);
     analogWrite(digitalOutputPinForBlueLED, valueOfBlue);
   }
   x++;
 }
    else {
      x = 1; 
     }
delay(1);
}

1 个答案:

答案 0 :(得分:0)

查看文档,您唯一遗漏的是将插件添加到PLUGINS目录中。将已编译的插件从git复制到〜/ .mozilla / 插件 /而不是〜/ .mozilla / 扩展