Ruslan Ishkildin
Ruslan Ishkildin
@mrobotby, my version is definitely > 1.6.0. I can't remember for sure, but I think it is 1.6.13
@carlosperate I run it by cloning the repo and double clicking `start.py`. I'm using python 3.5 under Windows 10 64. Tomorrow I'll send you the repo.
@carlosperate, I've installed desktop version
1) I tried to reproduce issue on Linux, Here is output https://gist.github.com/microspace/77e4c03e65b9446a15c22936ef78391e Archlinux 64 bit, Arduino IDE 1.6.17 2) Windows 7 32, Arduino IDE 1.8.1 ``` Python 3.6.0 (v3.6.0:41df79263a11, Dec...
For linux: Arduino IDE is set to Russian language. Encoding of Arduino IDE in my case is WIN-1251 For windows: I could reproduce issue by opening WIN-1251 file in ISO-8859-1...
I've found quick fix. In `actions.py`: ``` #out = six.u(out) #error = six.u(error) import locale current_locale = locale.getdefaultlocale()[1] out = out.decode(current_locale) error = error.decode(current_locale) ``` This method doesn't work if...
@tonescones just wrote my own file manager api fro scratch
Thank you, i2c will be useful, but I mean UART serial port, mega has 4 of them. I want to receive data from a device by UART Another question: is...
I want to receive data from Pixy Camera. http://cmucam.org/projects/cmucam5/wiki/Pixy_Serial_Protocol Pixy can send data via uart, i2c, spi and even analog ports. Uart seams to me as most obvious choice. But...
@angelorbasto `locales` is not present in https://github.com/DefinitelyTyped/DefinitelyTyped/blob/e02af7c8715d92b148c57194da14fa3883172c00/types/plotly.js/index.d.ts#L1418 and ut gives error. Do you know how to solve this?