Borak Cytron - AI dalam Pendidikan
22:37
Пікірлер
@julisjahet9373
@julisjahet9373 Сағат бұрын
Nak oder dari mana?
@ThoughtinFlight
@ThoughtinFlight 11 сағат бұрын
Can you make this in the 8GB version? we would like to further test this for our standard deployment
@GREYSONLOHJIAYOUMoe
@GREYSONLOHJIAYOUMoe 21 сағат бұрын
so epic
@GREYSONLOHJIAYOUMoe
@GREYSONLOHJIAYOUMoe 21 сағат бұрын
good
@annadaniel1327
@annadaniel1327 2 күн бұрын
Hi. Kenapa motor servo saya berputar 360 darjah?
@ghegameza878
@ghegameza878 2 күн бұрын
ผมเเก้โค้ด ให้ใหม่ เเล้ว อย่างเเรกไปติดตั้ง ไลบรารี LCD_I2C ไม่ต้องใช้ LiquidCrystal_I2C นะมันใช้ไม่ได้ เเหละเอาโค้ดนี้ไปใช้ได้เลย #include <LCD_I2C.h> LCD_I2C lcd(0x27, 16, 2); #define _1BATH 3 #define _2BATH 4 #define _5BATH 5 #define _10BATH 6 #define PIEZO 8 int count_1BATH = 0; int count_2BATH = 0; int count_5BATH = 0; int count_10BATH = 0; int total_amount = 0; int curr_state_1BATH = HIGH; int prev_state_1BATH = HIGH; int curr_state_2BATH = HIGH; int prev_state_2BATH = HIGH; int curr_state_5BATH = HIGH; int prev_state_5BATH = HIGH; int curr_state_10BATH = HIGH; int prev_state_10BATH = HIGH; void intro() { lcd.setCursor((16 - 15) / 2, 0); lcd.print("Automatic coin"); lcd.setCursor((16 - 16) / 2, 1); lcd.print("operated machine"); delay(2000); lcd.clear(); } void setup() { lcd.begin(); lcd.backlight(); intro(); pinMode(_1BATH,INPUT); pinMode(_2BATH,INPUT); pinMode(_5BATH,INPUT); pinMode(_10BATH,INPUT); pinMode(PIEZO,OUTPUT); lcd.setCursor(0, 0); lcd.print("1 2 5 10 THB"); } void loop() { lcd.setCursor(0, 1); lcd.print(count_1BATH); lcd.setCursor(3, 1); lcd.print(count_2BATH); lcd.setCursor(6, 1); lcd.print(count_5BATH); lcd.setCursor(9, 1); lcd.print(count_10BATH); lcd.setCursor(12, 1); lcd.print(total_amount); curr_state_1BATH = digitalRead(_1BATH); curr_state_2BATH = digitalRead(_2BATH); curr_state_5BATH = digitalRead(_5BATH); curr_state_10BATH = digitalRead(_10BATH); if (curr_state_1BATH == LOW && prev_state_1BATH == HIGH) { count_1BATH++; total_amount += 1; tone(PIEZO, 1000, 100); } if (curr_state_2BATH == LOW && prev_state_2BATH == HIGH) { count_2BATH++; total_amount += 2; tone(PIEZO, 1000, 100); } if (curr_state_5BATH == LOW && prev_state_5BATH == HIGH) { count_5BATH++; total_amount += 5; tone(PIEZO, 1000, 100); } if (curr_state_10BATH == LOW && prev_state_10BATH == HIGH) { count_10BATH++; total_amount += 10; tone(PIEZO, 1000, 100); } prev_state_1BATH = curr_state_1BATH; prev_state_2BATH = curr_state_2BATH; prev_state_5BATH = curr_state_5BATH; prev_state_10BATH = curr_state_10BATH; }
@ghegameza878
@ghegameza878 2 күн бұрын
โค้ดนี้ถ้าทำตามที่ผมบอกก็ รัน ได้ ปกติ เเละผมก็เพิ่ม Function รวมเงินที่ใส่ไปทั้งหมดด้วย เเละถ้ามันไม่ทำงานอีก คุณคงต่อวงจรผิดเเน่นอน
@TooSlowTube
@TooSlowTube 3 күн бұрын
Nice. I may get one but what I'd really like is an RP2350B with all the IO pins available on 0.1 inch headers - either as a long DIP chip, similar to the Pi Pico but maybe 60-64 pins, or in the Arduino Mega format. Pimoroni make an RP2350B board but it has the same form factor and pinout as the Pi Pico or Pi Pico 2, so that doesn't interest me. The standard RP2350 has plenty of memory already. What I want is the extra IO pins, especially the extra ADC pins - I want as many as possible. Only having three ADCs on the Pi Pico / Pi Pico 2 is too limiting.
@user-uy3tm8wo8f
@user-uy3tm8wo8f 3 күн бұрын
พีคับโปรแกรมดาวน์โหลด ติดตั้งยังไงคับ
@devvpanther
@devvpanther 4 күн бұрын
This is a great video - thank you. When attempting to run the python script that is placed on the pi pico (code.py), I get an error that's complaining about not being able to recognize / import packages in the script. I'm new to Python but not so new to other languages. Is it expected that we've set up a virtual env on the pi pico and that we somehow come up with a requirements.txt file to download and install the required packages for this script? I've watched the video and have looked at the documentation on your site several times and I can't see what the difference is between what I've got going and your env. Any thoughts on this. Thanks for the resources and the video.
@devvpanther
@devvpanther 4 күн бұрын
It appears as though you have to have circuit python running on the pi pico in order for that above mentioned script to work. I think I've answered my own question.
@mohdkamilmohdamin8950
@mohdkamilmohdamin8950 4 күн бұрын
Maaf bertanya.. Kalau micobit tu kita ada tk letak dia punya skrip.. Sebab ada yang saya tk letak dan bunyi pon lain.. Microbit saya sama macam dalam video..
@AMMARZULFANBINAZMANMoe
@AMMARZULFANBINAZMANMoe 4 күн бұрын
mantap
@ADAMANIQHARDHANIBINMUHAMADYUSS
@ADAMANIQHARDHANIBINMUHAMADYUSS 4 күн бұрын
MANTAP
@MAKMAL.19-SKPARITLAPISKPM-Lab
@MAKMAL.19-SKPARITLAPISKPM-Lab 4 күн бұрын
heyyoww
@urbanistalepe
@urbanistalepe 5 күн бұрын
cool test! how can test with cars?
@santoshshirgaonkar24
@santoshshirgaonkar24 5 күн бұрын
👌
@kotopes_rf4
@kotopes_rf4 6 күн бұрын
as i see, this board based on 2350A, and not have huge GPIO pins as in 2350B chip. i waiting stamp-xl on 2350B, and all my future projects pcb has waiting 2350B chips. @cytrontech please add stamp-xl boards and 2350B mcu into shop.
@samagarwal3804
@samagarwal3804 7 күн бұрын
complete non-sense design. Fan should have been above raspberrypi.
@cxjiek
@cxjiek 7 күн бұрын
259 vs 220 (50 x 4.4). 18% markup? 😢
@TaQuangKhoiCoder
@TaQuangKhoiCoder 8 күн бұрын
@wywarren
@wywarren 8 күн бұрын
Have you run into the scenario where it says pipeline handler in use by another process when opening the second camera?
@MaverickM1
@MaverickM1 9 күн бұрын
As far as I know (from other videos) the pi5’s pci can be patched to provide real 3.0 speed. Did you do that before the test? I think the difference should be more significant in that case.
@abinantony404
@abinantony404 10 күн бұрын
the custom dataset on heilo ai is what I'm searching for
@mateusz3983
@mateusz3983 10 күн бұрын
.
@WiseOldPanda-gu9ho
@WiseOldPanda-gu9ho 11 күн бұрын
Where did he get that another plug for the Nintendo causeel there's was only two plugs and he put one of them on the usb
@79ober
@79ober 12 күн бұрын
08:42 USB Host bagi HID, dimana HID itu adalah Human Interface Devices.
@GDub1958
@GDub1958 12 күн бұрын
I was not able to understand anything you said...so sorry
@lakmalperera5391
@lakmalperera5391 12 күн бұрын
Worked for me thx
@cytrontech
@cytrontech 11 күн бұрын
Good to hear !
@REENEESGRACERICHARDMoe
@REENEESGRACERICHARDMoe 13 күн бұрын
makasih
@yellowbananatbui
@yellowbananatbui 13 күн бұрын
yes we won the first place!!!
@yellowbananatbui
@yellowbananatbui 13 күн бұрын
from malacca pikabot
@johnpaulalfonso9624
@johnpaulalfonso9624 13 күн бұрын
Can i have the code for this? The one on your website is different (its meant for a button). Hoping for you answers
@CLEMENTTSAIMINGXUANMoe
@CLEMENTTSAIMINGXUANMoe 13 күн бұрын
how do we make this
@wojciechzielinski7825
@wojciechzielinski7825 14 күн бұрын
I can't make it working, after all parkour with firmware, configs, kernels, changing multiple PCIE connectors and 2 rpi's it isn't detecting any NVME.
@user-ub3hd4sy4e
@user-ub3hd4sy4e 14 күн бұрын
exactly what I was looking for!
@Catnap.vr.
@Catnap.vr. 14 күн бұрын
I don’t have a HDMI-USB Video Capture Adapter
@TousifMollah120
@TousifMollah120 15 күн бұрын
আমি কিনতে চাই
@thedyladylagurl
@thedyladylagurl 15 күн бұрын
Boleh tolong list kan bahan-bahan?😅😅
@brendaanan6590
@brendaanan6590 10 күн бұрын
Bahan fungsi 1. Micro:bit 2. Klip buaya ( 5x ) 3. Pemegang batteri 4. Batteri AA ( 2x ) 5. Skru / paku ( 2x ) 6. Motor servo 7. Conecting wire male to female ( 3x ) Bahan badan robot 1. Kotak kasut 2. Botol minuman ( 3x ) 3. Bekas plastik 4. Bod impra Harap ini tolong kamu 😊
@hesynergy
@hesynergy 16 күн бұрын
Micro b SUCKS…It needs to be Type C!
@hesynergy
@hesynergy 16 күн бұрын
Foods! There was no count down…I a almost left until I decided to skip forward a little bit. You guys need to put a countdown timer if you’re gonna do this again so welcome and tell us about what’s going on with y’all and I’m interested in raspberry pie and what your efforts might be… I’m a 78 year-old technologist who is trying to force stall Alzheimer’s by studying as much as I can and creating new neurons so educate me… I’m sending protective and healing vibes to you and your loved ones Chas
@Ct-jc8oo
@Ct-jc8oo 16 күн бұрын
Klu guna microbit v1 tiada masalah kan? Sy dah order 8 set without microbit sbb ada yg lama
@triyonotempe
@triyonotempe 17 күн бұрын
Link pembelian bosku
@cytrontech
@cytrontech 14 күн бұрын
hi , ini link pembelian nya ya my.cytron.io/p-motion-2350-pro
@glennimmanuel9338
@glennimmanuel9338 18 күн бұрын
can i use for custom detection?
@cytrontech
@cytrontech 18 күн бұрын
Yes can
@glennimmanuel9338
@glennimmanuel9338 18 күн бұрын
@@cytrontech do you have some tutorials for doing that?
@IIoTBusinessDesigner
@IIoTBusinessDesigner 20 күн бұрын
Good job!!!!
@cytrontech
@cytrontech 19 күн бұрын
Thanks !
@antigaming7681
@antigaming7681 21 күн бұрын
nice bro simple and fixed the issue in seconds!!
@cytrontech
@cytrontech 21 күн бұрын
You're welcome!
@NicholasM-p9o
@NicholasM-p9o 23 күн бұрын
do i need the HDMI video capture USB???
@fmlazar
@fmlazar 23 күн бұрын
The only thing I miss is the funky shape of the earlier Argon cases.
@lin7117
@lin7117 24 күн бұрын
Can you use your computer mouse and keyboard to control?
@carolbaskas6929
@carolbaskas6929 24 күн бұрын
The score just happens after a few seconds and isn't responding to the sonar. The code doesn't set my servo in motion. It only moves after there is a score and only moves once. Can you help with the code?
@InioluwanimiEsther
@InioluwanimiEsther 25 күн бұрын
🎉🎉🎉🎉
@InioluwanimiEsther
@InioluwanimiEsther 25 күн бұрын
Jack of all Raspberries master of all ❤❤❤❤❤❤❤❤
@InioluwanimiEsther
@InioluwanimiEsther 25 күн бұрын
BOSS