(sorry for the delay as we are just back from vacation)
For the python GUI, you need to install two python packages, and one of them (python-tk) may not work well on macs? Can you take the code we had for the color tracker tuning and reduce it to
from Tkinter import *
master = Tk()
w1 = Label(master, text = "Hue min")
w1.pack()
mainloop()
and see whether that works? Or maibe try to run some of the TkInker tutorials to see where the problem might be?
For the bluefruit LE, we have used this simple code to relay data between JeVois serial and BLE (like the demo code for the bluefruit except for the loop() code):
// Sample UART relay using AdaFruit Feather 32u4 LE
#include <Arduino.h>
#include <SPI.h>
#if not defined (_VARIANT_ARDUINO_DUE_X_) && not defined (_VARIANT_ARDUINO_ZERO_)
#include <SoftwareSerial.h>
#endif
#include "Adafruit_BLE.h"
#include "Adafruit_BluefruitLE_SPI.h"
#include "Adafruit_BluefruitLE_UART.h"
#define BUFSIZE 128 // Size of the read buffer for incoming data
#define VERBOSE_MODE true // If set to 'true' enables debug output
#define BLUEFRUIT_HWSERIAL_NAME Serial1
#define BLUEFRUIT_UART_MODE_PIN 12 // Set to -1 if unused
#define BLUEFRUIT_SPI_CS 8
#define BLUEFRUIT_SPI_IRQ 7
#define BLUEFRUIT_SPI_RST 4 // Optional but recommended, set to -1 if unused
#define FACTORYRESET_ENABLE 1
#define MINIMUM_FIRMWARE_VERSION "0.6.6"
#define MODE_LED_BEHAVIOUR "MODE"
// Create the bluefruit object
Adafruit_BluefruitLE_SPI ble(BLUEFRUIT_SPI_CS, BLUEFRUIT_SPI_IRQ, BLUEFRUIT_SPI_RST);
// A small helper
void error(const __FlashStringHelper*err) {
//Serial.println(err);
while (1);
}
/**************************************************************************/
void setup(void)
{
Serial1.begin(9600);
/* Initialise the module */
if ( !ble.begin(VERBOSE_MODE) )
error(F("Couldn't find Bluefruit, make sure it's in CoMmanD mode & check wiring?"));
if ( FACTORYRESET_ENABLE )
{
/* Perform a factory reset to make sure everything is in a known state */
if ( ! ble.factoryReset() ) error(F("Couldn't factory reset"));
}
/* Disable command echo from Bluefruit */
ble.echo(false);
ble.verbose(false); // debug info is a little annoying after this point!
/* Wait for connection */
while (! ble.isConnected()) {
delay(500);
}
//Serial.println(F("******************************"));
// LED Activity command is only supported from 0.6.6
if ( ble.isVersionAtLeast(MINIMUM_FIRMWARE_VERSION) )
{
// Change Mode LED Activity
ble.sendCommandCheckOK("AT+HWModeLED=" MODE_LED_BEHAVIOUR);
}
// Set module to DATA mode
ble.setMode(BLUEFRUIT_MODE_DATA);
}
/**************************************************************************/
void loop(void)
{
while (ble.available()) Serial1.write(ble.read());
while (Serial1.available()) ble.write(Serial1.read());
}
Remember to set your JeVois serial port to 9600 by editing JEVOIS:/config/params.cfg on your microSD card (uncomment the settings related to BLE). Then you should be able to communicate with JeVois from an iPad or similar using the bluefruit app.
thanks for the pointer to Open Broadcaster, downloading it now to try it out!