Posts | Comments

Planet Arduino

Archive for the ‘sparkfun’ Category

Sparkfun Thing Plus - RA6M5

SparkFun Thing Plus – RA6M5 is a small MCU board based on a 200 MHz Renesas RA6M5 Cortex-M33 microcontroller and a Renesas DA14531MOD Bluetooth 5.1 LE module that follows Adafruit Feather/Sparkfun Thing Plus form factor. The module can transmit data over BLE with just 4mA (at 3.3V) power consumption and the company claims the board to be powered by a coin-cell battery. A LiPo battery can also be connected to the board through a 2-pin JST battery connector, and the Things Plus – RA6M5 board also features a single-cell charger and LiPo fuel gauge. Sparkfun Thing Plus – RA6M5 specifications: Microcontroller – Renesas R7FA6M5AH3CFP Core – Arm Cortex-M33 microcontroller @ up to 200 MHz Memory – 512KB SRAM Storage – 2MB Flash Security – Arm TrustZone, and Secure Crypto Engine 9 Wireless – Renesas DA14531MOD module for Bluetooth 5.1 LE connectivity with support for CodeLess AT command Datapump Radio Transmit [...]

The post SparkFun Thing Plus – RA6M5 board supports Bluetooth 5.1 LE through Renesas DA14531MOD module appeared first on CNX Software - Embedded Systems News.

SparkFun Pulsed Coherent Radar Sensor Acconeer XM125 Qwiic

SparkFun has launched a new Qwiic breakout board for the Acconeer XM125 60 GHz pulsed coherent radar sensor that can measure distance to humans even through walls and works at a distance of up to 20 meters. We’ve seen tiny 24GHz or 60GHz radar modules for several years now, and Supachai even reviewed the Seeed Studio mmWave sensor using ESPHome and Home Assistant late last year with the solution relying on Frequency-Modulated Continuous Wave (FMCW) technology. The Acconneer XM125 is a Pulse-radar module that emits electromagnetic waves in short bursts instead of continuously like FMCW radars and allows longer measurement ranges potentially at the cost of lower accuracy. Sparkfun Pulse Coherent Radar Sensor specifications: Acconeer XM125 Module A121  60GHz Pulsed Coherent Radar (PCR) Integrated baseband, RF front-end, and antenna in package Detects distance, speed, motion, and objects up to 20 meters away Millimeter precise readings Low power consumption STMicro STM32L431CBY6 [...]

The post Sparkfun’s Pulsed Coherent Radar Sensor features Acconeer XM125 60 GHz module, works through walls, offers up to 20-meter range appeared first on CNX Software - Embedded Systems News.

SparkFun GNSS L1/L5 Breakout Board

The SparkFun GNSS L1/L5 Breakout is a standard precision GNSS board with meter-level positional accuracy that features the u-Blox NEO-F10N dual-band module, an SMA antenna connector, and a USB-C port for power and data. As its name implies, the board relies on the L1/L5 bands of the NEO-F10N instead of the more commonly seen L1/L2 bands and delivers better performance in urban environments. That’s because the L5 band falls within the protected ARNS (aeronautical radionavigation service) frequency band leading to less RF interference. SparkFun GNSS L1/L5 Breakout specifications: GNSS u-Blox NEO-F10N module with L1/L5 dual-band GNSS receiver Concurrent Reception of GPS, Galileo, and Beidou Integrated SMA Connector Time to First Fix: 28s (cold), 2s (hot) Max Navigation Rate for Single GNSS Configuration (GPS): 20 Hz Positional Accuracy (GPS) – 1.5m Time Pulse Accuracy – 30ns Operational Limits Max G: ≤ 4G Max Altitude: 80km Max Velocity: 500m/s Supports NMEA, UBX [...]

The post SparkFun’s latest GNSS breakout board features u-Blox NEO-F10N L1/L5 dual-band receiver for urban environments appeared first on CNX Software - Embedded Systems News.

SparkFun Thing Plus ESP32-C6

SparkFun has launched yet another ESP32-C6 board with the “Thing Plus – ESP32-C6”  based on the ESP32-C6-WROOM-1-N16 module with 16MB flash and a PCB antenna and  range of I/Os and power options. The board features 28 through holes with up to 23 multi-function GPIOs and a Qwicc connector for expansion, and supports 5V or LiPo battery power through respectively a USB-C port a 2-pin JST connector combined with a charging chip, and a fuel gauge. SparkFun Thing Plus – ESP32-C6 specifications: Wireless module – ESP32-C6-WROOM-1-N16 MCU – ESP32-C6 32-bit single-core RISC-V microcontroller with 2.4 GHz WiFI 6, Bluetooth 5 LE, and 802.15.4 radio (Zigbee and Thread); Matter-compatible Storage – 16 MB flash PCB Antenna Storage – MicroSD card slot USB – 1x USB Type-C port for power and programming Expansion 12-pin + 16-pin headers with 23x multifunctional GPIOs Up to 7x 12-bit ADC channels Up to 2x UART channels (with [...]

The post SparkFun Thing Plus – ESP32-C6 board comes with 16MB flash, LiPo battery support appeared first on CNX Software - Embedded Systems News.

The Arduino IDE has a bit of a split personality. On the one hand, it is a simple environment where you can just pick and choose a few libraries, write a few lines of code, and make lots of interesting things. On the other hand, it is also an ecosystem in which many different boards and libraries can be supported. Writing a great library that everyone can easily use takes a little forethought. There is an official style guide, but a recent post by [Nate] from Sparkfun points out lessons learned from writing more libraries than most people.

Of course, as you might expect, some of this is a matter of opinion, and [Nate] admits that. For example, they always use the serial port at 115,200 baud, but they do note that 9,600 baud is also popular. They also suggest making code as readable as possible, which is usually good advice. In the old days, writing terse code might lead to higher efficiency, but with modern compilers, you ought to get a tight final result even when doing things in a pretty verbose fashion.

However, a lot of the advice is very subtle but important. For example, the use of default parameters and the order of parameters. If you add their advice to the official style guide, you should be well on your way to creating really great Arduino libraries.

Of course, you also need a great idea for a library or an improved library that doesn’t already exist. That may be your most difficult task. Sometimes it makes sense to port something over instead of starting from scratch.

Once you have a track and a kart to race on it, what’s missing? A lap counter that can give your lap times in hardcopy, obviously! That’s what led [the_anykey] to create the Arduino-based Lap Timer to help him and his kids trim those precious seconds off their runs, complete with thermal printer for the results.

The hardware uses an infrared break-beam sensor module (a Velleman PEM10D) to detect when a kart passes by. This module is similar to a scaled-up IR reflective object sensor; it combines an IR emitter and receiver on one end, and is pointed at a reflector placed across the track, up to 10 meters away. When a kart breaks the beam, the module reports the event to the rest of the hardware. Only needing electronics on one side allows the unit to be self-contained.

An obvious shortcoming of this system is the inability to differentiate between multiple karts, but for timing a single driver’s performance it does the trick. What’s great about this project is it showcases how accessible hardware is today; a device like this is possible to put together with what are essentially off-the-shelf components available to any hobbyist, using an Arduino as the glue to hold it together. We’d only comment that a red-tinted piece of plastic as an overlay for the red display (and a grey-tinted one for the green) would make the LED displays much easier to read. Still, this is a very clean and well-documented build. See it in action in the video embedded below.

If race timing that can handle multiple vehicles is more your speed, we’ve previously seen DIY lap counters intended for drone racing.


Filed under: Arduino Hacks

Beehive connected to internet.Learn how to pull realtime sensor data from a beehive to monitor its weight, temperature, and humidity over the internet.

Read more on MAKE

The post The Internet of Bees: Adding Sensors to Monitor Hive Health appeared first on Make: DIY Projects, How-Tos, Electronics, Crafts and Ideas for Makers.

Apr
16

Arduino Vs. Arduino: The Reseller’s Conundrum

arduino, arduino hacks, Arduino vs arduino, Licensing, News, sparkfun, trademark Comments Off on Arduino Vs. Arduino: The Reseller’s Conundrum 

Over the last few months, the internal struggles between the various founders of Arduino have come to a head. This began last November when Arduino SRL (the Italian version of an LLC) sued Arduino LLC for trademark infringement in Massachusetts District court. To assuage the hearts and minds of the maker community, Arduino SRL said they were the real Arduino by virtue of being the first ones to manufacture Arduino boards. A fork of the Arduino IDE by Arduino SRL – simply an update to the version number – was a ploy to further cement their position as the true developers of Arduino.

This is a mess, but not just for two organizations fighting over a trademark. If you’re selling Arduinos in your web store, which Arduino do you side with?

[Nate] from Sparkfun is answering that question with a non-answer.

Currently, Arduino SRL is the only source of Arduino Unos. Sparkfun will continue to buy Unos from SRL, but they’re not necessarily siding with Arduino SRL; people demand blue Arduinos with Italy silkscreened on the board, and Sparkfun is more than happy to supply these.

There are, however, questions about the future of Arduino hardware. The Arduino software stack will surely be around in a year, but anyone that will be purchasing thousands of little blue boards over the next year is understandably nervous.

redboardThis isn’t the first time Sparkfun has faced a challenge in Arduino supply. In 2012, when the Arduino Uno R3 was released, all the documentation for their very popular Inventor’s Kit was obsoleted overnight. In response to these supply chain problems, Sparkfun created the RedBoard.

Sparkfun has always offered to pay royalties on the RedBoard to Arduino LLC, just as they do with the Arduino Pro and Pro Mini. Effectively, Sparkfun is on the fence, with offers to manufacture the Arduino Zero, Uno, Mega, and Due coming from the LLC.

The reason for this is consumers. If someone wants an Arduino SRL-manufactured board, they’ll buy it. If, however, a customer wants to support Arduino LLC, that option is on the table as well.

It’s not a pretty position to be in, but it does show how someone can support one Arduino over another. In a year or two, there will only be one Arduino, but until then, if you have a preference, at least Sparkfun is giving you a choice.

Credit to Sparkfun for the great Spy vs. Spy image. Why don’t you sell googly eyes?


Filed under: Arduino Hacks, news
Mar
19

SXSW Create: Sparkfun Gives Kids Awesome Badges to Hack

arduino hacks, badge, badge hacking, cons, LED matrix, sparkfun, sxsw, sxsw create, wearable hacks Comments Off on SXSW Create: Sparkfun Gives Kids Awesome Badges to Hack 

By far the most desirable booth for the crowds at SXSW Create was the Sparkfun quadrant. We call it a quadrant because they had a huge footprint approaching 1/4 the tented area, but it was well used. They brought a number of staff down to Austin in order to give away a legit electronic badge project they call BadgerHack.

sxsw-sparkfun-badgerhack-kit-thumbWe love badge hacking. LOVE IT! But South-by isn’t purely a hardware conference so the badges aren’t made of PCBs (for shame). Add to that, free entry to Create scores you a wristband but no badge.

This is the answer to that, a badge giveaway and build-off aimed at kids but cool enough to make me feel only slightly awful for accepting one when I pretty much knew they were going to run out before the final day was done.

The USB stick PCB is, as you guessed it, an Arduino compatible loaded up with an FTDI chip and an ATmega328p which they call the BadgerStick. Accompanying this is a multiplexed 8×7 LED matrix board. Solder the three pin headers and the battery holder leads, connect to the plastic badge using the supplied double-stick tape, and you have a badge that scrolls a message in LEDs.

DSC_0508What an awesome giveaway. I really like it that they didn’t cut corners here. First off, the kids will value the badge much more because they had to actually assemble it rather than just being handed a finished widget. Secondly, there is the USB to serial chip and USB footprint that means they can reprogram it without any extra equipment. And an LED matrix… come on that’s just a gateway drug to learning Wiring. Bravo Sparkfun and Atmel for going this route with your marketing bucks.

The badge activity rounded out with some hardware interfacing. There’s a 3-pin socket that attendees could plug into 4 different stations around the booth. Once done they received a coupon code for Sparkfun that scrolls whenever the badge is booted up. For some at-home fun, the writeup (linked at the top) for the BadgerHack firmware is quite good. It offers advice on changing what is displayed on the badge and outlines how to build a game of Breakout with just a bit of added hardware.


Filed under: Arduino Hacks, cons, wearable hacks
The MicroView Blink  sketch running on our fixed boardThe response by GeekAmmo and Sparkfun to the MicroView problem has been amazing, but you can fix your broken one fairly simply if you're prepared to crack the case.

Read more on MAKE



  • Newsletter

    Sign up for the PlanetArduino Newsletter, which delivers the most popular articles via e-mail to your inbox every week. Just fill in the information below and submit.

  • Like Us on Facebook