Nice video good to know about CircuitPython. Please make more videos based on this.
@dtvking5 жыл бұрын
I would like to see it measure voltage if possible such as switching a relay on at one voltage and off at another voltage. I was thinking of getting into raspberry pi but this may be a cheaper way for the basic use I would need it for. You make it look so easy to do so please more on these types of devices. Thanks
@FlyByPC5 жыл бұрын
Arduinos and similar boards can easily measure voltages and make decisions based on that. I'm just learning CircuitPython myself, but in C, this would be something like if(analogRead(A0)>512{foo;}else{bar;}}
@SteveH-TN2 ай бұрын
Appreciate you sharing this video and information most helpful indeed 🎉
@rodproctor54665 жыл бұрын
Would you please describe how to see what is in the libraries that support the hardware functions.
@GaryExplains5 жыл бұрын
This is probably a good starting place: circuitpython.org/libraries
@rodproctor54665 жыл бұрын
Thanks for the reference. I'd looked at that before and couldn't find what I was looking for. What I found this time was the API Reference documents. I wanted to know is what all the functions were available from a specific library module. I really enjoy your channel!
@bewilderedlearningevolving4 жыл бұрын
@@rodproctor5466 I think what you're asking for is a combination of inspecting in realtime docs.python.org/3/library/functions.html#dir and further reference for the functions themselves github.com/adafruit/circuitpython
@John.0zАй бұрын
@@bewilderedlearningevolving Thank you.
@slacker21015 жыл бұрын
I can'r see a link to purchase the board. Very informative introduction to working with it. I would like to see more in depth.
@GaryExplains5 жыл бұрын
Sorry about that I forget to add them to the description. Fixed now.
@UKsystemsАй бұрын
Quite simply, I’m concerned that you did not think that’s use my Internet connected device to search the Internet for it. It would’ve given you an answer in the same time. It took to write a comment.
@andrewzuo865 жыл бұрын
An interpreted language on an embedded system. Nice!
@jamess17875 жыл бұрын
I call a high level of tom-foolery. No 'language' runs on a microcontroller except for binary. Last I checked: processors only used *ASM instruction sets represented by machine code and not an interpreter. The blinking-error fancy footwork is probably just the IDE flashing the LED with the error-logic defined within the software before 'converting' the un-interpreted erroneous code. ... Just my ungoogling skepticism, could be totally wrong but I have a feeling that I'm bang on. Only way to convince me otherwise is to pull the source code directly off the flash once it's been programmed.
@mikescholz64295 жыл бұрын
You dont compile anything, you upload plain text files with .py extension to it by dragging and dropping the same way you would with a thumb drive and every time main.py is updated it is automatically executed
@jamess17875 жыл бұрын
@@mikescholz6429 once you do this, and delete the files from your computer: is there any way to retrieve the .py or .pyc file from the trinket device? (If not, then that answers any question of how you program an MCU using Python... You don't 😯😜)
@mikescholz64295 жыл бұрын
James S yes you can open the .py file directly from the board in a text editor, make changes and as soon as you click save it starts executing the new code. There are binary compiled libraries on the board as well that comprise the actual interpreter but your actual loop stays in plain text. Also if you get one of the boards with the M4 cortex that has like 4 times as much ram it can do some decently heavy lifting. The chip is linked to IIRC a 4mb flash memory chip that holds your code as well as bitmaps, wav files or whatever else you may need. I have a setup that plays bitmap files on addressable LED strips where each row of pixels is one frame of the length of the strip and sequentially writes each row going down the image.
@jamess17875 жыл бұрын
@@mikescholz6429 So the MCU can't actually be programmed with Python, there's a subsystem on the chip, just like on your computer, that interprets the code and runs it on the processor. Perfect. :). Exactly as I thought. :D. Thanks for the clarification. Cool that it has removable storage!
@MrBobWareham4 жыл бұрын
Thank you, Gary, sorry I can purchase one as I got one a year ago that is in my drawer but now watching your video I think I will get it out and have a go so any more videos would be good thanks, Bob, in the Uk
@piiumlkj64975 жыл бұрын
Doesn't look much easier than C , in fact I think for simple uses C is easier (the blink sketch for example). That said I recognize the power of Python , especially when handling data (which can be a nightmare in C/C++) but I don't think anyone would need to handle any complicated data on a microcontroller.
@aphalunj4 жыл бұрын
You can use both if you like.
@AnonEeMouse5 жыл бұрын
What else can you build with this tiny chip and can it run off a 9 volt battery? I assume from its size it would be quite cheap.
@tannewt4 жыл бұрын
It cannot run directly off of a 9 volt because the regulator can only handle up to 5v.
@UKsystemsАй бұрын
@@tannewtit has a bat connection the trinket spec allows it but the m0 may not be full spec
@aoikishu3 жыл бұрын
If anyone else doesn't get theirs to blink, save as code.py instead of main.py or remove the code.py that's already in your CIRCUITPY directory.
@AidenMi4 жыл бұрын
would themis work for the PyRuler also?
@AidenMi4 жыл бұрын
this*
@pfabiszewski5 жыл бұрын
Could you make a comparison between CircuitPython one C when using with Arduino? Pros and cons of both? Cheers
@maneki9neko4 жыл бұрын
Nicely done . .
@JoelJosephReji5 жыл бұрын
That was cool!
@Saketh-Chandra5 жыл бұрын
Can I know the differences between Micropython vs Circuitpython?
@vinaybharadwaj8025 жыл бұрын
Circuitpython is a derivative of micropython developed and maintained by Adafruit. It makes the language simpler and education friendly.
@Saketh-Chandra5 жыл бұрын
@@vinaybharadwaj802 Thank you, And what about libraries? Aren't they are same
@tannewt4 жыл бұрын
@@Saketh-Chandra CircuitPython has a larger collection of libraries designed for it's hardware API that do not work directly with MicroPython.
@summerlaverdure3 жыл бұрын
this video was helpful, but kind of annoying that we didnt see boot time from power to running, i wanted to see how small that was
@theengineer99104 жыл бұрын
I love circuit Python but this board has no space at all which is frustrating cause I wanted to use the libraries CP can use for audio stuff
@tannewt4 жыл бұрын
Yup! M4 and nRF52840 boards will store and run more CircuitPython code than an M0 will (and run faster too!)
@UKsystemsАй бұрын
@@tannewt is that knowing that running faster isn’t always good and if you really wanted to do it properly, you would program the chip with precompiled code
@harishhanchinal28385 жыл бұрын
Thank you. Could you please show me the link to purchase it.
@GaryExplains5 жыл бұрын
The link in the description.
@supersu61385 жыл бұрын
Hi Gary its kind of irrelevant but still can u suggest me any unique project to work on using Arduino or rasp.pi just for learning something innovative plz help me
@abpccpba4 жыл бұрын
You are already on youtube so do a search for say LCD 'liquid crystal display ' see what comes up. "innovative" has no meaning here; everything you will see already exists. If you go to Arduino or Adafruit learn sections you will see very elaborate tutorials for there products. The last point to do this type of hobby being inquisitive is a must. In most cases when you ask a question of the host on youtube it should be about what they have presented otherwise as you can see He did not answer your request. When searching be as specific as you can.
@elvingonzalez89324 жыл бұрын
Where can I download the IDE to code the trinket please??
@tannewt4 жыл бұрын
codewith.mu
@diystem81265 жыл бұрын
how can i connect to ultra sonic sensor
@marcusk78554 жыл бұрын
The Basic Stamp was doing this 30 years ago. With BASIC though not python.
@RocktCityTim5 жыл бұрын
Servo controller!
@1MarkKeller5 жыл бұрын
*GARY!!!* *Bonjour Professeur!* *Bonjour Camarades De Classe!*
@GaryExplains5 жыл бұрын
MARK!!! Bonjour!!!
@briandsouza78545 жыл бұрын
Sir
@bluegizmo19835 жыл бұрын
I'm sure you already realized this, but that orange power wire you put on the breadboard at 9:50 was totally pointless and not needed for that circuit or any other circuits you showed lol.
@racketman2u4 жыл бұрын
really? how would the LED be powered, then, without a positive rail?
@UKsystemsАй бұрын
@@racketman2u how was it powered before? It wasn’t using the positive rail simply looking would tell you
@stellarorbit13415 жыл бұрын
I’ve never been this early before
@jackwhite38205 жыл бұрын
What about Micropython?
@fvgoya5 жыл бұрын
Like before watch...
@1MarkKeller5 жыл бұрын
*So say we all!*
@reiniertl4 жыл бұрын
Interesting but I better learn C than going through the pain of using such debugging capabilities. C is hard but not so much, it just needs a bit of discipline and a couple of good reference sources around you.
@pamus62425 жыл бұрын
6:06 ..... that is the worst sharpener you could have used on a pencil!!!
@toddmarshall4165 жыл бұрын
What we're going to do is we're going to
@TachirosLament4 жыл бұрын
Mega Newbie alert: how could i go about figuring out if this language and that board would be ideal to operate a nerf gun. i know i'll need to connect a microswitch for the trigger, a solenoid to be triggered by the microswitch, a 9v battery source and two step button to turn it on and off. maybe a capacitor might be needed supply consistent pot to the noid.
@UKsystemsАй бұрын
Quite simply you need to not ask people on the Internet to create the project for you. You simply need to learn it by doing lots and lots of projects and tell you are capable of doing the things you want to.
@zetaconvex19874 жыл бұрын
The big problem as I see it is that it costs $9 and you only get 5 GPIO pins. There's much better value to be had out there, surely.
@UKsystemsАй бұрын
Actually this is made by aid of fruit make lots of different boards around different chips. This is designed to be compact and small for many loping count cases having a low pin count in this is quite good for very compact things.
@alliejr5 жыл бұрын
Excellent! But as with _all_ modern software development, it's not about the language, it's about the framework (libraries). C, C++, Rust, Python, Java, JavaScript, Ruby, Perl... yada yada-- the syntactic differences are minor and once you know one, you can figure out the rest. The real "learning" is to learn and understand the _library_ (import board, digitalio, etc.) , as seen in your example which would look 99% the same in any of these languages, but knowing JavaScript or C instead of Python is not going to help you know how the libary works and what it does.
@TR7H5 жыл бұрын
You're mostly correct but I'll have to disagree slightly. What you said is true in most of high level software development but breaks down when getting closer to the actual hardware. It makes a metric ton of difference whether you know C or python when your writing firmware/ other microcontroller code. This is due to the fact that at sufficiently low levels, the language you're writing needs to conform to the actual hardware without any abstraction layers making your life easier. It's fine and dandy blinking some LEDs with circuit python (which is actually just a sort of perverted C wrapper) but when, for example, reading data from a I2C connected sensor you really need to understand actual silicon register sizes, pointers and all sort of low level stuff that simply isn't present in python.
@alliejr5 жыл бұрын
TR7H Fair.
@PATRIK67KALLBACK5 жыл бұрын
Great for the kids who don't like C/C++.
@detaart5 жыл бұрын
The performance is undoubtedly horrid when compared to C. You're saving a python script straight to some emulated usb mass storage. It then has to take that and compile it into bytecode if it wants any chance in hell of having any kind of performance at all. It needs to run an OS with all the overhead that comes with that, etc. The only things i can see this being useful for are things like IOT or somehow data processing (which an MCU would be bad for anyway). I don't see the point.
@johnnycernato40685 жыл бұрын
The point is easy access to newcommers, easier development for more complex applications and data processing. Of course the performance is 'horrible' compared to c, but let's be honest: A well programmed Arduino is more than powerful enough for almost all IoT projects, but the atmega is almost 20 years old. The ESP32 has a dual-core arm processor and tons of interfaces and hardware extentions, is cheaper than an arduino and still (running python) more powerfull than the atmega. Moore's law also applies to MCUs and it is high time for another abstraction layer. The arduino project was a milestone over 15 years ago, making MCUs accessible to makers, providing an easy to use IDE/compiler and acess via usb/uart (MCU development kits were proprietary and expensive until then). Micropython (or equivalent) even get rid of (cross-)compiling and makes testing, developing and deploying even easier. I highly recommend trying it yourself! Cheers!
@UKsystemsАй бұрын
@@johnnycernato4068 however if you have to install software installing something like the Arduino ID that will compiled the code properly in see is just about as good
@rezag.o.m56802 жыл бұрын
جوووون
@Metroid18905 жыл бұрын
What a crappy way to inform the user there has been an error in the code
@tannewt4 жыл бұрын
The flashes are for the case where you don't have a computer handy. If a screen is attached it will show the error just like the serial output.
@kitKat-by6kk Жыл бұрын
please stop poking your circuits with a graphite pencil... 🔥
@Avidiy11 ай бұрын
Very true, graphite is conductive, and may short the wrong pins and BOOM! great video though
@paulcosta82975 жыл бұрын
This Python crap is so hateable, dysfunctional, and unsuited to any serious endeavors. Not to mention I find C easier.
@UKsystemsАй бұрын
It was loving that this is literally made for children in schools that’s why a fruit have designed this option of using it this way the only reason why they actually made it this way not for serious things because you wouldn’t be using these micro controllers anyway
@GmanBB4 жыл бұрын
It's a good idea, but bad execution. Make small series and start it simple. For 6 years old kid simple. Want to learn how to execute right? Take a kid and start teach him or her. Then make 3-5 minute lessons on youtube.
@GaryExplains4 жыл бұрын
In your ever so humble opinion.
@awerealis5 жыл бұрын
I'd love to see it control sound. Nothing monumental just a PC Speaker single square wave would be quite impressive imho
@NoahHornberger5 жыл бұрын
increase the frequency of the on and off example and send it through a speaker, there you go