Тёмный

Writing C# on a IoT Microcontroller with .NET and the Wilderness Labs Meadow Project Lab Board 

Scott Hanselman
Подписаться 178 тыс.
Просмотров 31 тыс.
50% 1

Learn more at store.wilderne... and store.wilderne... and read the docs here developer.wilde...

Наука

Опубликовано:

 

7 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 40   
@sarcasmasaservice
@sarcasmasaservice 2 года назад
Thanks, Scott!! Your videos are always a blast to watch and give me so many ideas for future projects.
@MrGun444
@MrGun444 2 года назад
Dang... so cool being able to do C# on an IOT device! Tempts me so much. Thanks Scott for sharing your knowledge... You inspire me!
@kristianask
@kristianask 2 года назад
I read and followed your blog way back and really forgot all about you there for a while. Good that I found you again and that you're on a modern format. Also glad to see that even you are starting to show some age. I'm still using my photo from way back... need to change that :)
@JasonKingKong
@JasonKingKong 2 года назад
It's like a modern implementation of the 200-in-1 electronics experiment sets Radio Shack sold in the 80s.
@johnsimon8457
@johnsimon8457 2 года назад
“See how we don’t do edits here? We don’t - because it’s just not worth the trouble.” that’s a good mindset, this isn’t a Pluralsight course. People who are interested will find their way to it regardless - if I stutter or stumble, as long as I have a clear idea of what I’m going for, it’s ok to do it in a single take, better for the world to have the video than to have to wait until a clear Saturday to bust out Adobe Premier. That USB device mapper until is interesting. Keeping a Linux partition around on a personal use laptop is a pain and WSL is great except for some corner cases like this.
@EivindGussiasLkseth
@EivindGussiasLkseth 2 года назад
Great content! I'm actually doing some IoT again this summer. I've got two Arduino MKR WAN 1300 devices communicating between each other over LoRa. One is going to sit in my mail box, measuring whether I've got mail or not by using two distance sensors - one at the top of the mail box and one at the bottom. Hopefully, if something is put into the mail box, the distance from the wall to the letter will be enough to trigger a signal that I've got mail. Then the other MKR WAN 1300 will sit in my apartment, connected to the Internet and report the status to my smart home Grafana dashboard. At least, that's the idea. I haven't started yet. I'm just missing two parts now, the two distance sensors...
@velox__
@velox__ 2 года назад
That sounds pretty slick!
@carloseduardomayerdeolivei2913
@carloseduardomayerdeolivei2913 2 года назад
Nice!!! Didnt know this platform! I´ll certainly study it more! Thank you!
@cdrbvgewvplxsghjuytunurqwfgxvc
No way?! Never heard of them! Great stuff
@SamFugarino
@SamFugarino 2 года назад
I'm writing this before finishing the video. I went through the whole netduino thing. I really wanted it to catch on. I hope this attempt works out.
@SamFugarino
@SamFugarino 2 года назад
C# is very elegant. Absolutely love it. How quickly can you trigger an output using c#?
@Lazzerman42
@Lazzerman42 2 года назад
Fantastic! Being able to run Linux and Windows side by side is really powerful. I have to check the pricing on the wildernesslab stuff - A friend of mine really wants a wifi enabled soil-humidity system for his house - maybe this is the hardware to pull it off
@TimberWolfCLT
@TimberWolfCLT 2 года назад
Nicely done!
@hdsonix
@hdsonix Год назад
Hi Scott, whats this pixel display at the end?
@bo_0ss
@bo_0ss 2 года назад
Hello, I'm so excited to see it
@jparra2K
@jparra2K Год назад
Great video. Thank you for sharing that. Any pointers on how to integrate a Meadow board with a RGB matrix like the AdaFruit M4 Matrix Display?
@randallyoung6715
@randallyoung6715 5 месяцев назад
Dude, how did you get the wonderful colors on your terminal session, is that a WSL trick?
@edinetgrunhed6000
@edinetgrunhed6000 Год назад
i miss netduino, finally and updated one
@largepimping
@largepimping 2 года назад
I love the idea of running c# on an MCU. I just wish those boards weren't so expensive! I assume their usage of an STMicro part has a lot to do with that...
@shanselman
@shanselman 2 года назад
I’ll ask!
@Andrew-rc3vh
@Andrew-rc3vh 2 года назад
The cost is why many of these bits of hardware won't work commercially. I'm also wondering what sort of overhead this c# causes in speed and memory usage.
@CodyLohse
@CodyLohse 2 года назад
Hi Scott! Love the videos. A bit random, but I would love to know what you use to draw the rectangles and arrows in your screen recordings?
@shanselman
@shanselman 2 года назад
ZoomIt
@bar10dr
@bar10dr 2 года назад
Should be some sort of common framework that one can implement separate device flash for via vs
@scara1701
@scara1701 10 месяцев назад
I've been looking at making a small .Net 7 C# program that polls several devices on the network for values and send the data to an API. I've considered putting it on a raspberry Pi device, but I'm worried about maintaining the OS. So this could be a suitable alternative? Do I have to worry about my Nuget packages if they support Standard 2.0?
@ozzietradie6514
@ozzietradie6514 2 года назад
cool kit
@elainesgardenpdx
@elainesgardenpdx 2 года назад
Can I ask what software are you using to record your videos? Thanks.
@convisat
@convisat Год назад
I have no idea how the GetTemperature Method inside the while loop could ever trigger. You will have to run the Task.Delay Method exactly at Second 0. If so, then it will only get's the temperature every hour. Do I miss something?
@maradasa985
@maradasa985 2 года назад
Thank you sir.
@tallbaldgeek
@tallbaldgeek 2 года назад
Hi Scott - Around the 8:00 mark there's a line of code with the "≠" character that looks to be a substitute for "!=". I hadn't seen that before so I tried using that in a C# .Net 6 project and the compiler didn't like it (error CS1056: Unexpected character '≠'). Is that a .Net 7 preview feature or am I using the wrong unicode character when trying it? I'm trying U+2260.
@alexanderpopovtsev3822
@alexanderpopovtsev3822 2 года назад
It's actually a special font that renders some pairs of characters as a single character. This is called a ligature. So you just need to change your font in Visual Studio to some font with ligatures (e.g. Fira Code).
@tallbaldgeek
@tallbaldgeek 2 года назад
@@alexanderpopovtsev3822 thanks for the info! Never knew the term ligature before.
@goodboy4464
@goodboy4464 2 года назад
Hello, On which software did you write the code?
@shanselman
@shanselman 2 года назад
Visual Studio
@jmctoob2
@jmctoob2 2 года назад
I have been mad at Secret/Wilderness Labs since the Agent Watch scam. I backed the Agent watch and they ran off with the money. But looking now, it looks like they went out of business and someone acquired them.. So maybe time to give them another chance.
@shanselman
@shanselman 2 года назад
Ya WL acquired netduino. This isn’t the same people.
@enrikeexposito3384
@enrikeexposito3384 2 года назад
Can anyone invest in this company. If (true) How();
@browaruspierogus2182
@browaruspierogus2182 2 года назад
stm32-F7 old arm - no - prefer K210 and c# is a joke on that
@osy2201
@osy2201 2 года назад
Далее
Fixing Plastic with Staples
00:18
Просмотров 1,4 млн
Они захватят этот мир🗿
00:48
Просмотров 312 тыс.
Don't throw exceptions in C#. Do this instead
18:13
Просмотров 258 тыс.
My Top Tips for using Windows Terminal like a Pro
16:10
IoT Show: An introduction to .NET nanoFramework
20:17
Getting started with .NET nanoFramework
18:54
Просмотров 4 тыс.
Why build an entire computer on breadboards?
28:43
Просмотров 3,1 млн
Your Keyboard vs TurboFlex keyboard 👍.
0:25
Просмотров 8 млн