I’ve been overwhelmed over these past few weeks and months with all that is coming out of Washington. We’re well past whatever tipping point when it comes to the collapse of American democracy. We are watching the old white guys with money and power working to make sure that their money and power is never challenged for generations to come. Meanwhile the world burns and dies, and I can do nothing about it.
So I have turned inward to my animals and my photography to capture what makes me happy and calm at this point in time. These creatures are sweet and truly innocent, almost Garden-of-Eden innocent before the Fall. I’ve reached a point in my life where I tear up when I read of the cruelty heaped by humans on their kind. And I seem to cry a lot these days.
All of these photos are black and white because that’s where my mind is at at the moment. I don’t know why, except that perhaps I’m reaching back over 40 years to when I first started to photograph the world seriously, and all I could afford and print on my own were black and white film. It was much simpler then, and much happier.
All three of these images went through Photoshop 6. I “developed” them to my personal taste. The cameras used were the Panasonic G9 and the Olympus Pen F. The lenses used were the Olympus 12-40mm PRO and the Olympus 17mm PRO. Both cameras are set up to photograph in black and white. I took my time with each photo, and took just enough to find the right image. And then I sat on them for a while, rather than rush them out into the world. The entire process has been slow and deliberate. I get tired of reading the hipsters that say you can only “do” slow and deliberate with film. You can do slow and deliberate with anything, including digital.
Beau (or Bo) – 4 yearsLuke – 4 years
At this moment I am satisfied, a bit more calm, and a bit more happy.
All of this work is done on my MacBook Pro with macOS Mojave 10.14.6 (I haven’t upgraded beyond Mojave yet because I don’t see the need on the MacBook, and if I need macOS 10.15 it’s installed on my Mac Mini).
First, let’s sort out my (miss) adventures with Arduino IDE. It started a few days ago when I decided to do something with the Feather, a device I’d purchased nearly a year prior. I’d plugged it in several times when it first arrived and I’d used the Arduion IDE’s Serial Monitor (Tools > Serial Monitor) to check it. It shipped with the StandardFirmataBLE sketch compiled and installed, so I was able to see the device’s internal configuration on the Serial Monitor as well as test it with Adafruit’s Bluefruit LE Connect app. I then put it aside and wound up forgetting about it until just recently. Adafruit still sells the device today, which is good.
It was during this restart I noticed that my version of the Arduino IDE was at 1.8.7, but the website had released 1.8.10. So I downloaded the latest IDE software and installed it.
After the IDE updated I updated the Feather’s bootloader software. That went off without a hitch. Then I started to look at the sample sketches for the board that Adafruit provides. Since it already came with the Firmata sketch installed and running, I found the source in the samples and attempted to recompile and upload. That’s when everything went screwy. Here’s an example of the error output.
Arduino: 1.8.10 (Mac OS X), Board: "Adafruit Bluefruit Feather nRF52832, 0.2.13 SoftDevice s132 6.1.1, Level 0 (Release)"
/Users/wbeebe/Git/arduino/libraries/Servo/src/nrf52/Servo.cpp: In member function 'void Servo::writeMicroseconds(int)':
/Users/wbeebe/Git/arduino/libraries/Servo/src/nrf52/Servo.cpp:92:12: error: 'g_APinDescription' was not declared in this scope
instance=(g_APinDescription[pin].ulPWMChannel & 0xF0)/16;
^~~~~~~~~~~~~~~~~
/Users/wbeebe/Git/arduino/libraries/Servo/src/nrf52/Servo.cpp: In member function 'int Servo::readMicroseconds()':
/Users/wbeebe/Git/arduino/libraries/Servo/src/nrf52/Servo.cpp:123:12: error: 'g_APinDescription' was not declared in this scope
instance=(g_APinDescription[pin].ulPWMChannel & 0xF0)/16;
^~~~~~~~~~~~~~~~~
Multiple libraries were found for "Firmata.h"
Used: /private/var/folders/d9/n152_yx519121c0nlmlds71c0000gn/T/AppTranslocation/2101D1AD-76B6-4A4E-A36D-936C2672D030/d/Arduino.app/Contents/Java/libraries/Firmata
Multiple libraries were found for "Adafruit_LittleFS.h"
Used: /Users/wbeebe/Library/Arduino15/packages/adafruit/hardware/nrf52/0.14.6/libraries/Adafruit_LittleFS
Multiple libraries were found for "InternalFileSystem.h"
Used: /Users/wbeebe/Library/Arduino15/packages/adafruit/hardware/nrf52/0.14.6/libraries/InternalFileSytem
Multiple libraries were found for "bluefruit.h"
Used: /Users/wbeebe/Library/Arduino15/packages/adafruit/hardware/nrf52/0.14.6/libraries/Bluefruit52Lib
Multiple libraries were found for "Servo.h"
Used: /Users/wbeebe/Git/arduino/libraries/Servo
Not used: /private/var/folders/d9/n152_yx519121c0nlmlds71c0000gn/T/AppTranslocation/2101D1AD-76B6-4A4E-A36D-936C2672D030/d/Arduino.app/Contents/Java/libraries/Servo
Not used: /Users/wbeebe/Library/Arduino15/packages/adafruit/hardware/nrf52/0.14.6/libraries/Servo
Multiple libraries were found for "Wire.h"
Used: /Users/wbeebe/Library/Arduino15/packages/adafruit/hardware/nrf52/0.14.6/libraries/Wire
exit status 1
Error compiling for board Adafruit Bluefruit Feather nRF52832.
Lots of error messages. The key to a solution is line 20, but I’ll get to that. In the meantime I went slumming on the Internet for solutions, none of which really worked, so that don’t bear repeating here. What finally got me out of this mess and allowed the sketch to compile is the removal of the libraries folder pointed to in line 20 (which none of the on-line experts never mentioned). I don’t know what happened except that something got out of sync in the upgrade to Arduino IDE 1.8.10, and that caused a cascade effect in the error messages. When I removed the libraries folder and then reloaded the Adafruit nRF52 specific libraries again, everything was just fine. The libraries folder was recreated by the IDE.
In the mean time I decided to try to run a sketch that simply flashed the LEDs on the Feather board. The listing follows.
#include <Arduino.h>
/**
* Sketch demonstrates mutli-tasking using the Scheduler.
* Demo creates a loop2() that runs in 'parallel' with loop().
* - loop() toggles LED_RED every 1 second
* - loop2() toggles LED_BLUE every 300 milliseconds
*/
void setup() {
// whb Nov 2019
// This must be performed first or else nothing else will work.
// No, I don't know exactly why.
//
Serial.begin(115200);
// LED_RED & LED_BLUE pins are already initialized outputs.
// Create loop2() using Scheduler to run in 'parallel' with loop()
//
Scheduler.startLoop(loop2);
}
/**
* Toggle the Red LED every second
*/
void loop() {
digitalToggle(LED_RED); // Toggle LED
delay(1000); // wait for a second
}
/**
* Toggle the Blue LED every 300 milliseconds
*/
void loop2() {
digitalToggle(LED_BLUE); // Toggle LED
delay(300); // wait for a half second
}
There’s far more comments than code, and that’s after not including the boilerplate block comment at the start of the code. This is from an example sketch provided when you install the Adafruit libraries. So I compiled and uploaded it, and the lights didn’t flash. Ok. I went online to Adafruit’s Feather documentation and copied an even simpler sketch that just flashed the red LED. Again, compiled and uploaded and nothing happened. The red LED just glimmered, like it did while the upload to the Feather was taking place.
I went back and looked at the major Firmata sketch, and at setup specifically, and that’s when the light went off. So I added line 15 above, and bingo, the lights started to flash like they’re supposed to. I played with a number of other sketches like this one. Load them without the Serial.begin() and nothing worked. Add that single line and it worked as advertised.
I also like this sketch because it points to the use of freeRTOS in the code. Keep in mind that the processor in the feather is a 32-bit ARM Cortex M4 processor running at 64MHz with 64K of RAM and 256K of Flash. It’s more than enough for basic embedded work, including freeRTOS. When I think back to the late 1970s and early 1980s I would have given anything to have this back when all that was available were Commodore 64s and Apple ][s and TRS-80s and the original IBM PC. This even blows the original Macintosh away with its 8MHz Motorola 68000. And here it all is now, on a board not much bigger than a stick of chewing gum and all for just $25 instead of the hundreds to thousands back then. Anyway…
The Arduino and its environment are now stable again, and I can build (in C, and possible C++) “sketches” for the Feather. This goes along with my Circuit Playground and my little Adafruit 32U4 powered robot. All of my code is checked into my Github location, https://github.com/wbeebe/arduino
You must be logged in to post a comment.