BreakfastSerial icon indicating copy to clipboard operation
BreakfastSerial copied to clipboard

A Firmata based framework for interacting with Arduinos over serial.

Results 10 BreakfastSerial issues
Sort by recently updated
recently updated
newest added

I am getting the following error when I try to compile the file: ``` python led.py Traceback (most recent call last): File "led.py", line 7, in from BreakfastSerial import Led,...

I have problems with using the Sensor .value returning a NoneType. I can't perform any math on it.

Hi Swift, I had two issues with BreakfastSerial and Yun board using StandardFirmata 2.3 (bundled with Arduino IDE 1.5.4): - initialization was failing with `FirmataNotOnBoardException` due to empty `firmata_version` property....

Taken from '30 Arduino projects for the evil genius' book.

The RGB LED that came with my arduino kit is reverse polarity; that is, the common lead is actually Vcc and the individual color inputs have to be pulled LOW...

Worked with @kymwatts to figure out bluetooth serial communication yesterday. Need to document how to get it all working so others can use it.

enhancement

Getting this once in a while. Looks like a pyFirmata issue. ``` Connecting to /dev/cu.usbmodem1411 Traceback (most recent call last): File "motor.py", line 10, in board = Arduino() File "/Users/theycallmeswift/dev/open-source/BreakfastSerial/BreakfastSerial/BreakfastSerial.py",...

Windows is actually already supported if you specify the COM port manually: ``` board = Arduino("COM5") ``` Adding windows support should be as simple as adjusting the regex to match...

enhancement