Charath Ranganathanpragmatiktech.hashnode.net·Jul 4, 2022Your first program: Blinking an LEDIn this tutorial, we look at what it takes to create the simplest program of all - one that blinks the onboard LED on the Raspberry Pi Pico. https://youtu.be/B-6GsoEg0Lw The Program The program itself is simple - about 15 lines of code. // blink.go ...DiscussTinyGotinygo
Charath Ranganathanpragmatiktech.hashnode.net·Jul 13, 2022GPIO and Interrupts on the PicoIn this tutorial, we explore how to connect external devices such as LEDs and push buttons to the Pico, and how to use an "interrupt" to handle an input. https://youtu.be/I5uVHBgOZQo Objective We need to create a program which continuously blinks an...DiscussTinyGotinygo
Charath Ranganathanpragmatiktech.hashnode.net·Jul 1, 2022Set up your Pico with TinyGo and VSCodeIn this article, I will show you how I set up my development environment for TinyGo on the Pico using VSCode as my IDE. The TinyGo web site has a detailed installation guide for various operating systems. So, the steps below are just for your quick r...DiscussTinyGopico
Md Moinuddinnoobyco.hashnode.net·Apr 25, 2023🦄Microcontrollers support modern languagesPoints to be covered Lil History. Modern language support in microcontrollers. Will my development board support these languages? Let's blink Leds with a couple of these modern languages. What has changed in the microcontroller ecosystem? Befor...Discuss·33 readsraspberry-pi-pico
Nathan Pricegravityfargo.hashnode.net·Mar 5, 2023Raspberry Pi Pico & Code-OSS on Archlinux - A Comprehensive GuideI got really annoyed trying to figure out how to use the pico with vscode on arch, and I'm sure others are as well. Here's everything I did to get it working. I'll definitely forget all this so it def needed to be written down. System Packages sudo p...Discuss·77 readsArchLinux
Nathan Pricegravityfargo.hashnode.net·Dec 1, 2022Raspberry Pi Pico SDK - Manual Installation and TestPico SDK Download the pico SDK from the official GitHub into your chosen directory. I don't like looking at it, so I put it in a hidden folder. mkdir ~/.picob && cd ~/.pico git clone https://github.com/raspberrypi/pico-sdk.git Add the SDK to your PA...Discuss·125 readsRaspberry Pi
Anjan Nairanjannair.hashnode.net·Aug 10, 2022Ducky on Raspberry Pi PicoA Pico Ducky is a USB rubber ducky, defined on the internet as - "USB Rubber ducky is an HID device that looks similar to a USB Pen drive. It may be used to inject keystroke into a system, used to hack a system, steal victims essential and credential...Discuss·128 readsraspberry-pi-pico
Charath Ranganathanpragmatiktech.hashnode.net·Jul 31, 2022TinyGo Channels on the PicoIn this tutorial, we look at how goroutines can communicate with one another using what are called "channels". https://youtu.be/NmEMwFQ0MI0 Objective One of our earlier tutorials covered GoRoutines, which are one of the most common concurrency primit...Discuss·50 readsTinyGotinygo
Charath Ranganathanpragmatiktech.hashnode.net·Jul 13, 2022GPIO and Interrupts on the PicoIn this tutorial, we explore how to connect external devices such as LEDs and push buttons to the Pico, and how to use an "interrupt" to handle an input. https://youtu.be/I5uVHBgOZQo Objective We need to create a program which continuously blinks an...DiscussTinyGotinygo
Charath Ranganathanpragmatiktech.hashnode.net·Jul 10, 2022Concurrency with GoroutinesLet us modify the simple blink program from our earlier tutorial to run multiple tasks simultaneously. This is what we call concurrency. Go has a number of primitives to help make programmers' lives easier when they create concurrent programs. In ...DiscussTinyGotinygo
Charath Ranganathanpragmatiktech.hashnode.net·Jul 4, 2022Your first program: Blinking an LEDIn this tutorial, we look at what it takes to create the simplest program of all - one that blinks the onboard LED on the Raspberry Pi Pico. https://youtu.be/B-6GsoEg0Lw The Program The program itself is simple - about 15 lines of code. // blink.go ...DiscussTinyGotinygo
Charath Ranganathanpragmatiktech.hashnode.net·Jul 1, 2022Set up your Pico with TinyGo and VSCodeIn this article, I will show you how I set up my development environment for TinyGo on the Pico using VSCode as my IDE. The TinyGo web site has a detailed installation guide for various operating systems. So, the steps below are just for your quick r...DiscussTinyGopico