SlideShare a Scribd company logo
1 of 37
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Building a Raspberry Pi
Robot Arm with .NET 8,
Blazor and SignalR
PETE GALLAGHER
PETECODES.CO.UK
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
About Me
Pete Gallagher
@pete_codes
www.PeteCodes.co.uk
pete@pjgcreations.co.uk
Full Stack Dev Manager at Avanade UK
Microsoft Certified Trainer & Azure MVP, Pluralsight Author
Decades of Desktop, Web & Embedded Software experience,
Meetup Organiser,
STEM Ambassador, Code Club Organiser โ€ฆ Gadget Addict
Father of two inquisitive girls
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Hello World (In the
world of IoT)
Device Bindings and
Driving Servos
Raspberry Pi GPIO and
the Circuit
.NET 8 and Installing on
the Pi
Final Demos
Blazor and SignalR
What weโ€™re going to be doingโ€ฆ
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
.NET 8
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
.NET 8
INFRASTRUCTURE
.NET STANDARD
.NET everywhere
WEB CLOUD
IoT AI
DESKTOP MOBILE GAMING
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Whatโ€™s new in .NET 8?
https://bit.ly/pjgdotnet8new
ARM64 Performance
Improvements
Garbage Collector
Enhancements
JSON
Enhancements
.NET
Aspire
Publish to a
Container
Maui / ASP.NET / EF
Improvements
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
.NET Ecosystem Momentum
> 6.1M
Monthly Active Users
In Visual Studio
#1 Most Admired
Framework
.NET Core
Top 5
Highest velocity OSS Projects
github.com/dotnet
github.com/aspnet
Top 5
Language on GitHub
C#
15x
Faster than Node.js
ASP.NET Core
40%
New to .NET are students*
dot.net download survey
.NET Conf 2023 Keynote - https://bit.ly/pjgdotnetconf2023
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Raspberry Pi Install
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Raspberry Pi Install
Single Line Install
wget -O - https://raw.githubusercontent.com/pjgpetecodes/dotnet8pi/main/install.sh | sudo bash
http://bit.ly/dotnet8pi
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
.NET 8 & GPIO
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
System.Device.Gpio
https://www.nuget.org/packages/System.Device.Gpio
Very Limited Support for
Raspberry Pi 5
Supports Linux and
Windows 10 IoT
Supports Raspberry Pi,
Beagleboard,
Hummingboard,
Odroid etc
Supports I/O, SPI,
PWM, I2C
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Raspberry Pi GPIO
Board Numbering
BCM Numbering
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Raspberry Pi Circuit 1
Pin 10
Pin 26
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Raspberry Pi Demo 1
Hello World (In the world of IoT)
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
https://www.nuget.org/packages/Iot.Device.Bindings
Explorer Hat
Sense Hat
MCP23xxx I/O Expander
BME280 Temperature /
Humidity Sensor
Much More!
Servos
Iot.Device.Bindings
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Raspberry Pi Circuit 2
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Servo Control Board
Pin 25
Pin 35
Pin 13
Pin 12
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Servos Control
Power
Ground
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Servos
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Raspberry Pi Demo 2
Servo Demo
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Blazor
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
โ€œBlazor is a single-page app
framework for building
interactive client-side Web
apps with .NETโ€
Scott Hanselman
Blazor
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
https://bit.ly/pjgblazor
No Javascript!*
Server Side or Client
Side WebAssembley
Web UI Framework
based in C# / Razor and
HTML
Steve Sandersonโ€™s Pet
Project
Support in All Major
Browsers
Client Side .NET with no
plugins
Blazor
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
SignalR
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
โ€œASP.NET SignalR is a library for
ASP.NET developers to add real-
time web functionality to their
applicationsโ€
Wikipedia
SignalR
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
https://bit.ly/pjgsignalr
Open Source
Supports Web Sockets,
Server-Sent Events,
Long Polling
Enables Bi-directional
Real-Time communications
Created by David Fowler
and Damian Edwards
in 2011
SignalR
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Raspberry Pi Demo 3
Drive the Arm!
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Unity and VR
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
โ€œUnity is a Cross-Platform Game
Engineโ€ฆ
Unity gives users the ability to
create games and experiences in
both 2D and 3Dโ€
Wikipedia
Unity and VR
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
https://unity.com/
Scripting using
.NET Standard 2.0
or C# 8
Support for Virtual and
Mixed Reality
Cross Platform
Founded in 2002 by
Nicholas Francis,
Joachim Ante & David
Helgason
Adding NuGet
Packages can be painful
Build and Deploy
Directly to the Headset
Unity and VR
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Raspberry Pi Demo 4
VR Robots!
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Bonus Section!
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
.NET everywhere
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
.NET everywhere
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Links
๏ต GitHub and Workshop
https://bit.ly/dotnetrobotgithub
๏ต Installing Dot Net 8 on the Raspberry Pi
http://bit.ly/dotnet8pi
๏ต Dot Net GPIO Nuget Package
https://www.nuget.org/packages/System.Device.Gpio
๏ต Dot Net IoT Device Bindings Source Code
https://github.com/dotnet/iot/tree/master/src/devices
๏ต 3D Printed Robot Arm โ€“ From the presentation
https://www.thingiverse.com/thing:1015238
๏ต 3D Printed Robot Arm - Workshop
http://bit.ly/pjgrobotarmparts
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
๏ต Twitter
@pete_codes
๏ต Email:
pete@pjgcreations.co.uk
๏ต Personal Website:
https://www.petecodes.co.uk
Notts IoT:
https://www.nottsiot.co.uk
๏ต Dot Net Notts:
https://www.dotnetnotts.co
๏ต Notts Dev Workshop:
https://www.nottsdevworkshop.co.uk
๏ต LATi:
https://www.lati.org.uk
๏ต Agile Engineering Podcast:
https://agileengineeringpodcast.com/
๏ต Azureish Live:
https://www.twitch.tv/azureishlive
Contact Me
Slides: https://bit.ly/pjgndcsydney2024
Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes
Contact Me
Pete Gallagher
@pete_codes
www.PeteCodes.co.uk
Pete@PJGCreations.co.uk
Slides: https://bit.ly/pjgndcsydney2024

More Related Content

Similar to Building a Raspberry Pi Robot with Dot NET 8, Blazor and SignalR

Similar to Building a Raspberry Pi Robot with Dot NET 8, Blazor and SignalR (20)

Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR - HackSoc -...
Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR - HackSoc -...Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR - HackSoc -...
Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR - HackSoc -...
ย 
Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR - .NET Sout...
Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR - .NET Sout...Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR - .NET Sout...
Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR - .NET Sout...
ย 
Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR - Bradford ...
Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR - Bradford ...Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR - Bradford ...
Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR - Bradford ...
ย 
Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR
Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalRBuilding a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR
Building a Raspberry Pi Robot Arm with .NET 5, Blazor and SignalR
ย 
Building a Raspberry Pi Robot with .NET 5, Blazor and SignalR - NDC London 2021
Building a Raspberry Pi Robot with .NET 5, Blazor and SignalR - NDC London 2021Building a Raspberry Pi Robot with .NET 5, Blazor and SignalR - NDC London 2021
Building a Raspberry Pi Robot with .NET 5, Blazor and SignalR - NDC London 2021
ย 
Building a Raspberry Pi Robot with .NET 5, Blazor and SignalR - DDD 2020
Building a Raspberry Pi Robot with .NET 5, Blazor and SignalR - DDD 2020Building a Raspberry Pi Robot with .NET 5, Blazor and SignalR - DDD 2020
Building a Raspberry Pi Robot with .NET 5, Blazor and SignalR - DDD 2020
ย 
Dot NET Core 3 with the Raspberry Pi - Virtual Azure Community Day
Dot NET Core 3 with the Raspberry Pi - Virtual Azure Community DayDot NET Core 3 with the Raspberry Pi - Virtual Azure Community Day
Dot NET Core 3 with the Raspberry Pi - Virtual Azure Community Day
ย 
Dot Net Core 3 with Raspberry Pi - HackSoc Notts
Dot Net Core 3 with Raspberry Pi - HackSoc NottsDot Net Core 3 with Raspberry Pi - HackSoc Notts
Dot Net Core 3 with Raspberry Pi - HackSoc Notts
ย 
Dot Net Core 3 with Raspberry Pi
Dot Net Core 3 with Raspberry PiDot Net Core 3 with Raspberry Pi
Dot Net Core 3 with Raspberry Pi
ย 
Controlling Robots Remotely with Azure
Controlling Robots Remotely with AzureControlling Robots Remotely with Azure
Controlling Robots Remotely with Azure
ย 
Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023
Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023
Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023
ย 
Azure IoT Hubs with Raspberry Pi and Node.js - DDD 14 Microsoft - Reading - 1...
Azure IoT Hubs with Raspberry Pi and Node.js - DDD 14 Microsoft - Reading - 1...Azure IoT Hubs with Raspberry Pi and Node.js - DDD 14 Microsoft - Reading - 1...
Azure IoT Hubs with Raspberry Pi and Node.js - DDD 14 Microsoft - Reading - 1...
ย 
Azure IoT Hubs with Raspberry Pi and Node.js - Azure Bootcamp - 27-04-19
Azure IoT Hubs with Raspberry Pi and Node.js - Azure Bootcamp - 27-04-19Azure IoT Hubs with Raspberry Pi and Node.js - Azure Bootcamp - 27-04-19
Azure IoT Hubs with Raspberry Pi and Node.js - Azure Bootcamp - 27-04-19
ย 
Getting started with IoT with only your Laptop (Lightning Talk) - October 201...
Getting started with IoT with only your Laptop (Lightning Talk) - October 201...Getting started with IoT with only your Laptop (Lightning Talk) - October 201...
Getting started with IoT with only your Laptop (Lightning Talk) - October 201...
ย 
Azure IoT Hubs with Raspberry Pi and Node.js
Azure IoT Hubs with Raspberry Pi and Node.jsAzure IoT Hubs with Raspberry Pi and Node.js
Azure IoT Hubs with Raspberry Pi and Node.js
ย 
IoT with only your Laptop - Build Stuff 2021
IoT with only your Laptop - Build Stuff 2021IoT with only your Laptop - Build Stuff 2021
IoT with only your Laptop - Build Stuff 2021
ย 
Getting started with IoT with only your laptop - March 2020 - Dot Net Sheff
Getting started with IoT with only your laptop - March 2020 - Dot Net SheffGetting started with IoT with only your laptop - March 2020 - Dot Net Sheff
Getting started with IoT with only your laptop - March 2020 - Dot Net Sheff
ย 
DevOps in an IoT World - Brighton Web Development - 29-10-20
DevOps in an IoT World - Brighton Web Development - 29-10-20DevOps in an IoT World - Brighton Web Development - 29-10-20
DevOps in an IoT World - Brighton Web Development - 29-10-20
ย 
IOT with Drupal 8 - Webinar Hyderabad Drupal Community
IOT with Drupal 8 -  Webinar Hyderabad Drupal CommunityIOT with Drupal 8 -  Webinar Hyderabad Drupal Community
IOT with Drupal 8 - Webinar Hyderabad Drupal Community
ย 
IoT with Apache ActiveMQ, Camel & Spark
IoT with Apache ActiveMQ, Camel & SparkIoT with Apache ActiveMQ, Camel & Spark
IoT with Apache ActiveMQ, Camel & Spark
ย 

More from Peter Gallagher

More from Peter Gallagher (12)

Supercharging your Data with Azure AI Search and Azure OpenAI
Supercharging your Data with Azure AI Search and Azure OpenAISupercharging your Data with Azure AI Search and Azure OpenAI
Supercharging your Data with Azure AI Search and Azure OpenAI
ย 
Experience Raspberry Pi 5 - October 2023
Experience Raspberry Pi 5 - October 2023Experience Raspberry Pi 5 - October 2023
Experience Raspberry Pi 5 - October 2023
ย 
Azure Percept Home Automation - Hacksoc 2022
Azure Percept Home Automation - Hacksoc 2022Azure Percept Home Automation - Hacksoc 2022
Azure Percept Home Automation - Hacksoc 2022
ย 
Deploying Web Apps using Config and Infrastructure as Code with Octopus Deplo...
Deploying Web Apps using Config and Infrastructure as Code with Octopus Deplo...Deploying Web Apps using Config and Infrastructure as Code with Octopus Deplo...
Deploying Web Apps using Config and Infrastructure as Code with Octopus Deplo...
ย 
Deploying Web Apps using Config and Infrastructure as Code with Octopus Deplo...
Deploying Web Apps using Config and Infrastructure as Code with Octopus Deplo...Deploying Web Apps using Config and Infrastructure as Code with Octopus Deplo...
Deploying Web Apps using Config and Infrastructure as Code with Octopus Deplo...
ย 
Config and Deployments as Code with Octopus Deploy
Config and Deployments as Code with Octopus DeployConfig and Deployments as Code with Octopus Deploy
Config and Deployments as Code with Octopus Deploy
ย 
Azure Percept Home Automation - Microsoft Reactor London - 28-05-22
Azure Percept Home Automation - Microsoft Reactor London - 28-05-22Azure Percept Home Automation - Microsoft Reactor London - 28-05-22
Azure Percept Home Automation - Microsoft Reactor London - 28-05-22
ย 
Azure Percept Home Automation - Festive Tech Calendar 2021 - 01-12-21
Azure Percept Home Automation  - Festive Tech Calendar 2021 - 01-12-21Azure Percept Home Automation  - Festive Tech Calendar 2021 - 01-12-21
Azure Percept Home Automation - Festive Tech Calendar 2021 - 01-12-21
ย 
Azure Percept Home Automation - .NET Liverpool - 28-10-21
Azure Percept Home Automation  - .NET Liverpool - 28-10-21Azure Percept Home Automation  - .NET Liverpool - 28-10-21
Azure Percept Home Automation - .NET Liverpool - 28-10-21
ย 
Azure Percept Home Automation - .NET Docs Show - 20-09-21
Azure Percept Home Automation  - .NET Docs Show - 20-09-21Azure Percept Home Automation  - .NET Docs Show - 20-09-21
Azure Percept Home Automation - .NET Docs Show - 20-09-21
ย 
IoT with only your laptop - Microsoft Garage - January 2021
IoT with only your laptop - Microsoft Garage - January 2021IoT with only your laptop - Microsoft Garage - January 2021
IoT with only your laptop - Microsoft Garage - January 2021
ย 
IoT isn't just for Christmas
IoT isn't just for ChristmasIoT isn't just for Christmas
IoT isn't just for Christmas
ย 

Recently uploaded

โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Vijayawada Call-girls in Women Seeking Men ๐Ÿ”Vijayawada๐Ÿ” E...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Vijayawada Call-girls in Women Seeking Men  ๐Ÿ”Vijayawada๐Ÿ”   E...โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Vijayawada Call-girls in Women Seeking Men  ๐Ÿ”Vijayawada๐Ÿ”   E...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Vijayawada Call-girls in Women Seeking Men ๐Ÿ”Vijayawada๐Ÿ” E...
amitlee9823
ย 
CHEAP Call Girls in Ashok Nagar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar  (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICECHEAP Call Girls in Ashok Nagar  (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
MOHANI PANDEY
ย 
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
drmarathore
ย 
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In Yusuf Sarai โ‰ผ๐Ÿ” Delhi door step delevryโ‰ผ๐Ÿ”
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In Yusuf Sarai โ‰ผ๐Ÿ” Delhi door step delevryโ‰ผ๐Ÿ”Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In Yusuf Sarai โ‰ผ๐Ÿ” Delhi door step delevryโ‰ผ๐Ÿ”
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In Yusuf Sarai โ‰ผ๐Ÿ” Delhi door step delevryโ‰ผ๐Ÿ”
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป kakinada Call-girls in Women Seeking Men ๐Ÿ”kakinada๐Ÿ” Escor...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป kakinada Call-girls in Women Seeking Men  ๐Ÿ”kakinada๐Ÿ”   Escor...โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป kakinada Call-girls in Women Seeking Men  ๐Ÿ”kakinada๐Ÿ”   Escor...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป kakinada Call-girls in Women Seeking Men ๐Ÿ”kakinada๐Ÿ” Escor...
amitlee9823
ย 
Call Girls In RT Nagar โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In RT Nagar โ˜Ž 7737669865 ๐Ÿฅต Book Your One night StandCall Girls In RT Nagar โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In RT Nagar โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
amitlee9823
ย 
Abortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Jeddah |+966572737505 | Get CytotecAbortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
ย 
CHEAP Call Girls in Vinay Nagar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICECHEAP Call Girls in Vinay Nagar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
ย 
Call Girls Chickpet โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)
Call Girls Chickpet โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)Call Girls Chickpet โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)
Call Girls Chickpet โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)
amitlee9823
ย 
(๐Ÿ‘‰Ridhima)๐Ÿ‘‰VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(๐Ÿ‘‰Ridhima)๐Ÿ‘‰VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...(๐Ÿ‘‰Ridhima)๐Ÿ‘‰VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(๐Ÿ‘‰Ridhima)๐Ÿ‘‰VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
motiram463
ย 
Makarba ( Call Girls ) Ahmedabad โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Makarba ( Call Girls ) Ahmedabad โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...Makarba ( Call Girls ) Ahmedabad โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Makarba ( Call Girls ) Ahmedabad โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Naicy mandal
ย 
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Muzaffarpur Call-girls in Women Seeking Men ๐Ÿ”Muzaffarpur๐Ÿ” ...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Muzaffarpur Call-girls in Women Seeking Men  ๐Ÿ”Muzaffarpur๐Ÿ”  ...โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Muzaffarpur Call-girls in Women Seeking Men  ๐Ÿ”Muzaffarpur๐Ÿ”  ...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Muzaffarpur Call-girls in Women Seeking Men ๐Ÿ”Muzaffarpur๐Ÿ” ...
amitlee9823
ย 
SM-N975F esquematico completo - reparaciรณn.pdf
SM-N975F esquematico completo - reparaciรณn.pdfSM-N975F esquematico completo - reparaciรณn.pdf
SM-N975F esquematico completo - reparaciรณn.pdf
StefanoBiamonte1
ย 
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
SUHANI PANDEY
ย 

Recently uploaded (20)

โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Vijayawada Call-girls in Women Seeking Men ๐Ÿ”Vijayawada๐Ÿ” E...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Vijayawada Call-girls in Women Seeking Men  ๐Ÿ”Vijayawada๐Ÿ”   E...โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Vijayawada Call-girls in Women Seeking Men  ๐Ÿ”Vijayawada๐Ÿ”   E...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Vijayawada Call-girls in Women Seeking Men ๐Ÿ”Vijayawada๐Ÿ” E...
ย 
CHEAP Call Girls in Ashok Nagar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar  (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICECHEAP Call Girls in Ashok Nagar  (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
ย 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
ย 
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
ย 
Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7
Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7
Escorts Service Daryaganj - 9899900591 College Girls & Models 24/7
ย 
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
ย 
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In Yusuf Sarai โ‰ผ๐Ÿ” Delhi door step delevryโ‰ผ๐Ÿ”
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In Yusuf Sarai โ‰ผ๐Ÿ” Delhi door step delevryโ‰ผ๐Ÿ”Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In Yusuf Sarai โ‰ผ๐Ÿ” Delhi door step delevryโ‰ผ๐Ÿ”
Call Now โ‰ฝ 9953056974 โ‰ผ๐Ÿ” Call Girls In Yusuf Sarai โ‰ผ๐Ÿ” Delhi door step delevryโ‰ผ๐Ÿ”
ย 
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป kakinada Call-girls in Women Seeking Men ๐Ÿ”kakinada๐Ÿ” Escor...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป kakinada Call-girls in Women Seeking Men  ๐Ÿ”kakinada๐Ÿ”   Escor...โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป kakinada Call-girls in Women Seeking Men  ๐Ÿ”kakinada๐Ÿ”   Escor...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป kakinada Call-girls in Women Seeking Men ๐Ÿ”kakinada๐Ÿ” Escor...
ย 
Call Girls in Vashi Escorts Services - 7738631006
Call Girls in Vashi Escorts Services - 7738631006Call Girls in Vashi Escorts Services - 7738631006
Call Girls in Vashi Escorts Services - 7738631006
ย 
Call Girls In RT Nagar โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In RT Nagar โ˜Ž 7737669865 ๐Ÿฅต Book Your One night StandCall Girls In RT Nagar โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
Call Girls In RT Nagar โ˜Ž 7737669865 ๐Ÿฅต Book Your One night Stand
ย 
Abortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Jeddah |+966572737505 | Get CytotecAbortion pills in Jeddah |+966572737505 | Get Cytotec
Abortion pills in Jeddah |+966572737505 | Get Cytotec
ย 
Top Rated Pune Call Girls Ravet โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Ravet โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Ravet โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Ravet โŸŸ 6297143586 โŸŸ Call Me For Genuine Sex Servi...
ย 
CHEAP Call Girls in Vinay Nagar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICECHEAP Call Girls in Vinay Nagar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )๐Ÿ” 9953056974๐Ÿ”(=)/CALL GIRLS SERVICE
ย 
Call Girls Chickpet โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)
Call Girls Chickpet โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)Call Girls Chickpet โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)
Call Girls Chickpet โ˜Ž 7737669865โ˜Ž Book Your One night Stand (Bangalore)
ย 
(๐Ÿ‘‰Ridhima)๐Ÿ‘‰VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(๐Ÿ‘‰Ridhima)๐Ÿ‘‰VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...(๐Ÿ‘‰Ridhima)๐Ÿ‘‰VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(๐Ÿ‘‰Ridhima)๐Ÿ‘‰VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
ย 
Makarba ( Call Girls ) Ahmedabad โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Makarba ( Call Girls ) Ahmedabad โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...Makarba ( Call Girls ) Ahmedabad โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
Makarba ( Call Girls ) Ahmedabad โœ” 6297143586 โœ” Hot Model With Sexy Bhabi Rea...
ย 
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Muzaffarpur Call-girls in Women Seeking Men ๐Ÿ”Muzaffarpur๐Ÿ” ...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Muzaffarpur Call-girls in Women Seeking Men  ๐Ÿ”Muzaffarpur๐Ÿ”  ...โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Muzaffarpur Call-girls in Women Seeking Men  ๐Ÿ”Muzaffarpur๐Ÿ”  ...
โžฅ๐Ÿ” 7737669865 ๐Ÿ”โ–ป Muzaffarpur Call-girls in Women Seeking Men ๐Ÿ”Muzaffarpur๐Ÿ” ...
ย 
SM-N975F esquematico completo - reparaciรณn.pdf
SM-N975F esquematico completo - reparaciรณn.pdfSM-N975F esquematico completo - reparaciรณn.pdf
SM-N975F esquematico completo - reparaciรณn.pdf
ย 
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
ย 
(INDIRA) Call Girl Napur Call Now 8617697112 Napur Escorts 24x7
(INDIRA) Call Girl Napur Call Now 8617697112 Napur Escorts 24x7(INDIRA) Call Girl Napur Call Now 8617697112 Napur Escorts 24x7
(INDIRA) Call Girl Napur Call Now 8617697112 Napur Escorts 24x7
ย 

Building a Raspberry Pi Robot with Dot NET 8, Blazor and SignalR

  • 1. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Building a Raspberry Pi Robot Arm with .NET 8, Blazor and SignalR PETE GALLAGHER PETECODES.CO.UK
  • 2. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes About Me Pete Gallagher @pete_codes www.PeteCodes.co.uk pete@pjgcreations.co.uk Full Stack Dev Manager at Avanade UK Microsoft Certified Trainer & Azure MVP, Pluralsight Author Decades of Desktop, Web & Embedded Software experience, Meetup Organiser, STEM Ambassador, Code Club Organiser โ€ฆ Gadget Addict Father of two inquisitive girls
  • 3. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Hello World (In the world of IoT) Device Bindings and Driving Servos Raspberry Pi GPIO and the Circuit .NET 8 and Installing on the Pi Final Demos Blazor and SignalR What weโ€™re going to be doingโ€ฆ
  • 4. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes .NET 8
  • 5. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes .NET 8 INFRASTRUCTURE .NET STANDARD .NET everywhere WEB CLOUD IoT AI DESKTOP MOBILE GAMING
  • 6. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Whatโ€™s new in .NET 8? https://bit.ly/pjgdotnet8new ARM64 Performance Improvements Garbage Collector Enhancements JSON Enhancements .NET Aspire Publish to a Container Maui / ASP.NET / EF Improvements
  • 7. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes .NET Ecosystem Momentum > 6.1M Monthly Active Users In Visual Studio #1 Most Admired Framework .NET Core Top 5 Highest velocity OSS Projects github.com/dotnet github.com/aspnet Top 5 Language on GitHub C# 15x Faster than Node.js ASP.NET Core 40% New to .NET are students* dot.net download survey .NET Conf 2023 Keynote - https://bit.ly/pjgdotnetconf2023
  • 8. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Raspberry Pi Install
  • 9. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Raspberry Pi Install Single Line Install wget -O - https://raw.githubusercontent.com/pjgpetecodes/dotnet8pi/main/install.sh | sudo bash http://bit.ly/dotnet8pi
  • 10. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes .NET 8 & GPIO
  • 11. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes System.Device.Gpio https://www.nuget.org/packages/System.Device.Gpio Very Limited Support for Raspberry Pi 5 Supports Linux and Windows 10 IoT Supports Raspberry Pi, Beagleboard, Hummingboard, Odroid etc Supports I/O, SPI, PWM, I2C
  • 12. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Raspberry Pi GPIO Board Numbering BCM Numbering
  • 13. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Raspberry Pi Circuit 1 Pin 10 Pin 26
  • 14. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Raspberry Pi Demo 1 Hello World (In the world of IoT)
  • 15. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes https://www.nuget.org/packages/Iot.Device.Bindings Explorer Hat Sense Hat MCP23xxx I/O Expander BME280 Temperature / Humidity Sensor Much More! Servos Iot.Device.Bindings
  • 16. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Raspberry Pi Circuit 2
  • 17. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Servo Control Board Pin 25 Pin 35 Pin 13 Pin 12
  • 18. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Servos Control Power Ground
  • 19. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Servos
  • 20. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Raspberry Pi Demo 2 Servo Demo
  • 21. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Blazor
  • 22. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes โ€œBlazor is a single-page app framework for building interactive client-side Web apps with .NETโ€ Scott Hanselman Blazor
  • 23. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes https://bit.ly/pjgblazor No Javascript!* Server Side or Client Side WebAssembley Web UI Framework based in C# / Razor and HTML Steve Sandersonโ€™s Pet Project Support in All Major Browsers Client Side .NET with no plugins Blazor
  • 24. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes SignalR
  • 25. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes โ€œASP.NET SignalR is a library for ASP.NET developers to add real- time web functionality to their applicationsโ€ Wikipedia SignalR
  • 26. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes https://bit.ly/pjgsignalr Open Source Supports Web Sockets, Server-Sent Events, Long Polling Enables Bi-directional Real-Time communications Created by David Fowler and Damian Edwards in 2011 SignalR
  • 27. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Raspberry Pi Demo 3 Drive the Arm!
  • 28. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Unity and VR
  • 29. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes โ€œUnity is a Cross-Platform Game Engineโ€ฆ Unity gives users the ability to create games and experiences in both 2D and 3Dโ€ Wikipedia Unity and VR
  • 30. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes https://unity.com/ Scripting using .NET Standard 2.0 or C# 8 Support for Virtual and Mixed Reality Cross Platform Founded in 2002 by Nicholas Francis, Joachim Ante & David Helgason Adding NuGet Packages can be painful Build and Deploy Directly to the Headset Unity and VR
  • 31. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Raspberry Pi Demo 4 VR Robots!
  • 32. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Bonus Section!
  • 33. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes .NET everywhere
  • 34. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes .NET everywhere
  • 35. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Links ๏ต GitHub and Workshop https://bit.ly/dotnetrobotgithub ๏ต Installing Dot Net 8 on the Raspberry Pi http://bit.ly/dotnet8pi ๏ต Dot Net GPIO Nuget Package https://www.nuget.org/packages/System.Device.Gpio ๏ต Dot Net IoT Device Bindings Source Code https://github.com/dotnet/iot/tree/master/src/devices ๏ต 3D Printed Robot Arm โ€“ From the presentation https://www.thingiverse.com/thing:1015238 ๏ต 3D Printed Robot Arm - Workshop http://bit.ly/pjgrobotarmparts
  • 36. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes ๏ต Twitter @pete_codes ๏ต Email: pete@pjgcreations.co.uk ๏ต Personal Website: https://www.petecodes.co.uk Notts IoT: https://www.nottsiot.co.uk ๏ต Dot Net Notts: https://www.dotnetnotts.co ๏ต Notts Dev Workshop: https://www.nottsdevworkshop.co.uk ๏ต LATi: https://www.lati.org.uk ๏ต Agile Engineering Podcast: https://agileengineeringpodcast.com/ ๏ต Azureish Live: https://www.twitch.tv/azureishlive Contact Me Slides: https://bit.ly/pjgndcsydney2024
  • 37. Building a Robot Arm with Raspberry Pi, .NET 8, Blazor & SignalR โ€“ Copyright Pete Gallagher 2024 โ€“ @Pete_Codes Contact Me Pete Gallagher @pete_codes www.PeteCodes.co.uk Pete@PJGCreations.co.uk Slides: https://bit.ly/pjgndcsydney2024

Editor's Notes

  1. .NET Aspire โ€“ Oppinionated Cloud Ready Stack for distrusted computing
  2. .NET is an entire software development platform that takes care of a lot of the heavy lifting for you when you want to build an application. Applications frameworks help you build the specific types of apps or workloads and enable you to literally build any app for any platform with any operating system. Each .NET workload shares a common infrastructure and .NET Standard library. This means not only are your .NET skills portable, but your actual code is portable no matter what youโ€™re building. This makes it easy to share reusable components (called libraries) across the breadth of applications people build. Additionally, there are a broad set of development tools that makes it really productive to write, debug, build and manage code bases. See: www.dot.net
  3. .NET Aspire โ€“ Oppinionated Cloud Ready Stack for distrusted computing
  4. 2024: .NET Conf 2023 Keynote - https://bit.ly/pjgdotnetconf2023 https://www.techempower.com/benchmarks/#section=data-r22&hw=ph&test=plaintext&f=zik0zj-zik0zj-zik0zj-zik0zj-zik0zj-zik0zj-hra0hr-zik0zj-zik0zj-zik0zj-qmx0qn-zik0zj-zik0zj-zik0zj-1ekf&l=8vn08w-0&c=3 2020: Build 2020 โ€“ Journey to one .NET - https://www.youtube.com/watch?v=ctSqiD8BGPM https://insights.stackoverflow.com/survey/2019#technology-most-loved-dreaded-and-wanted-loved3 github.com/cncf/velocity octoverse.github.com www.techempower.com/benchmarks/#section=data-r18&hw=ph&test=plaintext
  5. .NET Aspire โ€“ Oppinionated Cloud Ready Stack for distrusted computing
  6. Each PWM Channel is created passing in; The Chip Number The PWM Channel The Frquency Optionally, the Duty Cycle Percentage We also then create twoย ServoMotorย objects, passing in; The PWM Channel we'll be using The Maximum Angle of the Servo - We're using a 180 degree Servo, so we pass in 180 here The Minimum Pulse Width The Maximum Pulse Width
  7. Blazor replaces javascript and runs C# on the client side directly in the browsers with no plugins needed. Blazor Server โ€“ Works as a web Server (Shipped) Blazor Web Assembly (May 2020) Blazor Renders HTML, but Blazor Native but can render to other things like Native Controls for Mobile.
  8. Blazor replaces javascript and runs C# on the client side directly in the browsers with no plugins needed. Blazor Server โ€“ Works as a web Server (Shipped) Blazor Web Assembly (May 2020) Blazor Renders HTML, but Blazor Native but can render to other things like Native Controls for Mobile. Originally developed as a pet project byย Steve Sandersonย at Microsoft, Blazor is Web UI Framework which is based on C#, Razor and HTML. Blazor compiles down to WebAssembly, which makes it super (or blazingly) fast (Hence the Razor with a โ€œBโ€). Blazor allows developers to write client side .netโ€ฆ You may say โ€œOh, like Silverlight?โ€โ€ฆ Nope, no plugins neededโ€ฆ Itโ€™s just supported natively in most modern browsers.
  9. Server: Hubs ChatHub Startup.cs using BlazorSignalRApp.Server.Hubs; ConfigureServices services.AddSignalR(); app.useEndpoint endpoints.MapHub<ChatHub>("/chathub"); Properties Launchconfig applicationUrl Client Pages Index.razor _imports.rzor Wwwroot Index.html
  10. Blazor replaces javascript and runs C# on the client side directly in the browsers with no plugins needed. Blazor Server โ€“ Works as a web Server (Shipped) Blazor Web Assembly (May 2020) Blazor Renders HTML, but Blazor Native but can render to other things like Native Controls for Mobile. Originally developed as a pet project byย Steve Sandersonย at Microsoft, Blazor is Web UI Framework which is based on C#, Razor and HTML. Blazor compiles down to WebAssembly, which makes it super (or blazingly) fast (Hence the Razor with a โ€œBโ€). Blazor allows developers to write client side .netโ€ฆ You may say โ€œOh, like Silverlight?โ€โ€ฆ Nope, no plugins neededโ€ฆ Itโ€™s just supported natively in most modern browsers.
  11. .NET is an entire software development platform that takes care of a lot of the heavy lifting for you when you want to build an application. Applications frameworks help you build the specific types of apps or workloads and enable you to literally build any app for any platform with any operating system. Each .NET workload shares a common infrastructure and .NET Standard library. This means not only are your .NET skills portable, but your actual code is portable no matter what youโ€™re building. This makes it easy to share reusable components (called libraries) across the breadth of applications people build. Additionally, there are a broad set of development tools that makes it really productive to write, debug, build and manage code bases. See: www.dot.net
  12. .NET is an entire software development platform that takes care of a lot of the heavy lifting for you when you want to build an application. Applications frameworks help you build the specific types of apps or workloads and enable you to literally build any app for any platform with any operating system. Each .NET workload shares a common infrastructure and .NET Standard library. This means not only are your .NET skills portable, but your actual code is portable no matter what youโ€™re building. This makes it easy to share reusable components (called libraries) across the breadth of applications people build. Additionally, there are a broad set of development tools that makes it really productive to write, debug, build and manage code bases. See: www.dot.net