Jock Murphy
Jock Murphy
This is an example of one setting, but if you were to change ``` #define SPI_DRIVER_SELECT 0 ``` to ``` #ifndef SPI_DRIVER_SELECT #define SPI_DRIVER_SELECT 0 #endif ``` then people compiling...
I normally associate EEPROM with 1-10K write cycles and flash with 50-100K. The quoted section in [this forum post](https://www.avrfreaks.net/comment/76585#comment-76585) seems to indicate 50K cycles: > Data Retention of Atmel's dataflash...
There is no copyright or license mentioned in the readme or the code for this project. Technically this means people can't use this library without writing you and getting express...
I am curious about the idea of embedding OMicroB in an existing application as a way of running user scripts in a low (4-8K) RAM environment. Do you have any...
On OSX Yosemite, installed Brackets, then Cuwire plugin. Have Arduino 1.5.8 installed at /Applications/Arduino. Every time I set the Arduino IDE location, I get the following message: > Runtime issue:...
With my aging eyes that orange color is increasingly hard to read against a black background, and there is no way to change it. Yes I can copy and paste...
It is fine to say: > No standard library. No String, Number, RegExp, Date, Function, etc. But it was still a bit of a surprise to discover that `let x...
The following code produces a syntax error: ``` function foo() { let x = 0 } ``` Whereas: ``` function foo() { let x = 0; } ``` Does not....
I am looking to use Wren on a microcontroller. I have done a quick and dirty test to prove that it runs and that reasonable enough scripts can run within...
epd_driver.h describes a function called `epd_draw_frame_1bit` with a signature of: ``` void IRAM_ATTR epd_draw_frame_1bit(Rect_t area, uint8_t *ptr, enum DrawMode mode, int time) ``` Is this a public function? What is...