Nanoindentation Analysis
1:22
3 ай бұрын
Cloud Mag Vehicle Sense
2:52
6 ай бұрын
3D printed syringe pump
1:27
Жыл бұрын
A 3D printed paste dispenser
0:52
PCB workshop Part 1 (Using EasyEDA)
45:38
Пікірлер
@ramijali6964
@ramijali6964 Ай бұрын
Good. Brother Im using cnc router machine
@harryhefner9785
@harryhefner9785 2 ай бұрын
Look what I can do!! Worthless!!
@CowenTan-h6i
@CowenTan-h6i 3 ай бұрын
Great Intro Video!
@fionasoon1
@fionasoon1 3 ай бұрын
@@CowenTan-h6i Thanksfor sharing the video to reach wider community 👍
@محمدمحمود-خ8غ4ذ
@محمدمحمود-خ8غ4ذ 5 ай бұрын
good
@slravindu2177
@slravindu2177 5 ай бұрын
Sup❤❤
@igor7292
@igor7292 8 ай бұрын
may you share the arduino code? it would be very apreciated
@pkkushwaha4645
@pkkushwaha4645 10 ай бұрын
What tool are you using??
@xxxyyy1996
@xxxyyy1996 11 ай бұрын
Thank you for the Video. Can you please share the Arduino code.
@SHONNER
@SHONNER Жыл бұрын
Saw Techwithtim doing this exact example.
@duyquangdao8182
@duyquangdao8182 Жыл бұрын
How many grams of GO does 1 gram of graphite yield using this method?
@ivanlim6031
@ivanlim6031 Жыл бұрын
Hi, can you share the codes?
@baslanjabilsyamsuljazmi7569
@baslanjabilsyamsuljazmi7569 Ай бұрын
/* This code demonstrates how to interact with an Arduino Mega 2560 and a Modbus RTU temperature and humidity sensor (SHT20). It reads the temperature and humidity values every 1 seconds and display data to the serial monitor. Note: Serial Port 0 is not used to connect the RS485 Converter (MAX485) because its used for debugging. The Serial Port 1 (TX1, RX1) is used for ModBus communication interface. Wiring of Sensor, Arduino, and MAX485 TTL to RS485 Converter: ___________________________________________________________________________________________ | Sensor (SHT20) | MAX485 TTL to RS485 Converter | A (Yellow) | A (Terminal block) | B (White) | B (Terminal block) | GND (Black) | GND (External Supply) | Vs (Red) | 9-30V (External Supply) ___________________________________________________________________________________________ | MAX485 TTL to RS485 Converter | Arduino (Hardware Serial) | Arduino (Software Serial) | RO (Reciever Output) | D19 (RX1) | D9 (RX) | RE (Reciever Enable) | D2 | D2 | DE (Driver Enable) | D3 | D3 | DI (Driver Input) | D18 (TX1) | D10 (TX) ___________________________________________________________________________________________ */ #include <ModbusMaster.h> #include <SoftwareSerial.h> #define MAX485_RE_NEG 2 #define MAX485_DE 3 #define SSERIAL_RX_PIN 10 #define SSERIAL_TX_PIN 11 SoftwareSerial RS485Serial(SSERIAL_RX_PIN, SSERIAL_TX_PIN); ModbusMaster node; void preTransmission() { digitalWrite(MAX485_RE_NEG, 1); digitalWrite(MAX485_DE, 1); } void postTransmission() { digitalWrite(MAX485_RE_NEG, 0); digitalWrite(MAX485_DE, 0); } void setup() { // Initialize control pins pinMode(MAX485_RE_NEG, OUTPUT); pinMode(MAX485_DE, OUTPUT); digitalWrite(MAX485_RE_NEG, 0); digitalWrite(MAX485_DE, 0); // Modbus communication runs at 9600 baud Serial.begin(9600); RS485Serial.begin(9600); // Modbus slave ID 1 node.begin(1, RS485Serial); // Callbacks allow us to configure the RS485 transceiver correctly node.preTransmission(preTransmission); node.postTransmission(postTransmission); } void loop() { // Request 2 registers starting at 0x0001 uint8_t result =node.readInputRegisters(0x0000, 2); //x0000 is the initial address Serial.println("Data Requested"); if (result == node.ku8MBSuccess) { // Get response data from sensor Serial.print("Temperature: "); Serial.print(float(node.getResponseBuffer(0x01) / 10.00F)); Serial.print(" Humidity: "); Serial.println(float(node.getResponseBuffer(0x02) / 10.00F)); } delay(1000); }
@baslanjabilsyamsuljazmi7569
@baslanjabilsyamsuljazmi7569 Ай бұрын
please correct if i'm wrong... thanks
@shekarworden3967
@shekarworden3967 2 жыл бұрын
Thanks, this was really helpful! Can't wait to print my flexi-rex.
@justheptic4812
@justheptic4812 2 жыл бұрын
thank you so much!!!! that was alot easier then i expected to be honest
@MYNICEEV
@MYNICEEV 3 жыл бұрын
Awesome my dear. Are those boards available on the market? Keep up the good work. Happy New Year to you.
@carlosalbornoz4363
@carlosalbornoz4363 4 жыл бұрын
Excelente video ! Muchas Gracias. Andaba buscando una forma de pasar DXF a G-Code para corte de cartón. Por cierto, es muy buena también el tema que acompaña el video. podrías decirme el intérprete?
@MYNICEEV
@MYNICEEV 4 жыл бұрын
I do love that machine my friend.
@MYNICEEV
@MYNICEEV 4 жыл бұрын
Awesome. Have a great day my friend.
@saidaberda911
@saidaberda911 4 жыл бұрын
www.ijireeice.com/upload/2016/june-16/IJIREEICE%2040.pdf
@ronsmith6233
@ronsmith6233 4 жыл бұрын
You go so fast I can's see path, Makes this a worthless video.
@asphaltsunriseyt794
@asphaltsunriseyt794 4 жыл бұрын
the code my dear
@ronsmith6233
@ronsmith6233 4 жыл бұрын
Why do you move so slowly?
@muhammadshahidiqbalofficial
@muhammadshahidiqbalofficial 4 жыл бұрын
i have tried this method but at the end when i add H2O2 then black precipitate settle down, in your vidio you have not give prescription about addition H2O2 and in last of your vidio how light brown color obtained kindly explain your method in last step
@MYNICEEV
@MYNICEEV 5 жыл бұрын
A very nice piece of kit my dear friend. I an looking forward to your next video. I hope you have an amazing day and that the sun is shining for you. Regards. Raymond.
@fionasoon1
@fionasoon1 5 жыл бұрын
Thank you, Raymond! This piece of work will be applied for atmospheric pressure plasma jet. Wrap up warm for autumn :)
@MYNICEEV
@MYNICEEV 5 жыл бұрын
That was awesome. Thank you my dear. Have a great day.
@mariosubasic8968
@mariosubasic8968 5 жыл бұрын
Hi, how to program the code to fill out the letters? So, I want that the complete letter is engraved not only the out-border shape. Hope you understand what I mean :)
@AlternativeDIYEnergy
@AlternativeDIYEnergy 5 жыл бұрын
Awesome Fiona. Well done. Have an amazing day.
@fionasoon1
@fionasoon1 5 жыл бұрын
Thank you sir. Just an afternoon hobby try out :). Have a nice day too.
@hanani-tr
@hanani-tr 5 жыл бұрын
Hello there, can you please share the code ? thank you.
@AlternativeDIYEnergy
@AlternativeDIYEnergy 5 жыл бұрын
Another great video. I have not had much luck building my own HBridges. I have evacuated the magic blue smoke on many occasions. I have since been using ready built HBridges. Thank you my dear. Have a great day. Regards. Raymond.
@AlternativeDIYEnergy
@AlternativeDIYEnergy 5 жыл бұрын
Incredible to watch my dear Fiona.
@AlternativeDIYEnergy
@AlternativeDIYEnergy 5 жыл бұрын
Hello Fiona. An awesome tutorial. Thank you very much. From you I have learnt something new. Have a wonderful day.
@fionasoon1
@fionasoon1 5 жыл бұрын
Thanks for watching! I have designed some nice pcbs in easyEDA and fabricated in JLCPCB in China. I don't need to own a PCB lab to make a professional looking PCB! Most important of all, it cost less for prototyping small quantity of boards.
@AlternativeDIYEnergy
@AlternativeDIYEnergy 5 жыл бұрын
@@fionasoon1 Yes JLCPCB are great. I received 200 of my charger boards for MY NICE EV yesterday. All for $68 or £64 to me here in the UK. Panelised 2 per 100mm x 100mm panel. I am looking forward to seeing more of your work. I hope you have an amazing day. Regards. Raymond.
@josecruz1994
@josecruz1994 5 жыл бұрын
Can u please share de code? The attached url only shown configuration of DHT11 with Arduino. Thanks in advance
@fionasoon1
@fionasoon1 5 жыл бұрын
The codes given is for the serial xbee transmitter and there is code for the receiver. The received serial signal from receiver xbee will be decoded and displayed by xctu. Do have a look at other youtube video for configuration for xctu to work with xbee receiver.
@fionasoon1
@fionasoon1 5 жыл бұрын
Error :There is no code for the receiver xbee
@leichen5474
@leichen5474 5 жыл бұрын
666
@nevalenaginda6874
@nevalenaginda6874 5 жыл бұрын
Can you share the code sir?
@Wajiography
@Wajiography 5 жыл бұрын
very fruitful video..please make a video of Later force microscopy if possible..
@AlternativeDIYEnergy
@AlternativeDIYEnergy 5 жыл бұрын
Awesome tutorial. It looks a facinating machine. It is the sort of machine I could use for hours and never get bored. Many thanks. I am looking forward to your next video my good friend. Have an amazing day.
@fionasoon1
@fionasoon1 5 жыл бұрын
Thank you very much for your encouragement for a newbie like me. We prepare these videos for our postgraduate students to understand the operation of our machines.
@AlternativeDIYEnergy
@AlternativeDIYEnergy 5 жыл бұрын
@@fionasoon1 It looks to me that you are very proffesional and your videoing is great. Very well done. Keep doing what your doing. I will keep watching your videos. Have a wonderful day.
@AlternativeDIYEnergy
@AlternativeDIYEnergy 5 жыл бұрын
Cool. Is that the same Aspirin that we take for physical ailments of the body? Awesome video. Thank you.
@fionasoon1
@fionasoon1 5 жыл бұрын
Yes, sir. Thanks.
@AlternativeDIYEnergy
@AlternativeDIYEnergy 5 жыл бұрын
I didn't understand what you were doing. But from my perspective it looked amazing. You could use lasers to calibrate a silicon wafer. WOW! I didn't even know that was possible. Have a great day my new friend.
@fionasoon1
@fionasoon1 5 жыл бұрын
Hi. The Raman spectroscope must be calibrated before use. This is to ensure that the machine is in good working condition. Or else, the results of other measurements obtained can be questionable.
@AlternativeDIYEnergy
@AlternativeDIYEnergy 5 жыл бұрын
@@fionasoon1 Ah. Yes I see now. At 69 brain not what it used to be lol. Thank you for taking the time to explain. You are awesome. Have a graet day.
@cch_church
@cch_church 5 жыл бұрын
can you share code please
@moldovanhoratiu8333
@moldovanhoratiu8333 5 жыл бұрын
why is everyone wearing bunny suits like handling nerve gasses?... cool synthesis though
@fionasoon1
@fionasoon1 5 жыл бұрын
Hahaha....safety first!
@enamanagandlakarthik6800
@enamanagandlakarthik6800 5 жыл бұрын
co-ordinator code please
@enamanagandlakarthik6800
@enamanagandlakarthik6800 5 жыл бұрын
please share code as fast as possible
@devi-uu3ts
@devi-uu3ts 5 жыл бұрын
Sir can you please tell how can I use 1.8TFT ST7735 instead of 2.4 TFT(S6D0154)
@fionasoon1
@fionasoon1 5 жыл бұрын
You need to install the correct library. The libraries are here. github.com/adafruit/Adafruit-ST7735-Library
@devi-uu3ts
@devi-uu3ts 5 жыл бұрын
@@fionasoon1 sir, thank you can you tell me the connections of 1.8 TFT Display and DHT11 sensor and Arduino Mega 2560 once again
@fionasoon1
@fionasoon1 5 жыл бұрын
@@devi-uu3ts The connections are all indicated in the sketch! Make sure you understand the codes for the I/O (input/output) pins. Fiona Soon 1 year ago The codes are here:- ////////////////////////////////////////////// // 2.4" TOUCH SCREEN DEMO // //with DHT11 TEMPEARATURE AND HUMIDITY SENSOR// // modified from mwww.educ8s.tv // ///////////////////////////////////////////// /*this program works fine with arduino atmega and calbirate using Serial.print DHT11 temeperature and humidity sensor are added*/ #include <Adafruit_GFX.h> // Core graphics library #include <Adafruit_TFTLCD.h> // Hardware-specific library #include <TouchScreen.h> #include <SD.h> #include <SPI.h> #include <DHT.h> #define DHTPIN 7 // what pin the sensor is connected to D7 #define DHTTYPE DHT11 // Which type of DHT sensor you're using: //#define DHT_GND 5 // ground pin of the sensor //#define DHT_VCC 8 // voltage pin of the sensor #define TEMPERATURE 1 // for the DHT sensor #define HUMIDITY 0 // for the DHT sensor #define YP A1 // must be an analog pin, use "An" notation! #define XM A2 // must be an analog pin, use "An" notation! #define YM 29 // can be a digital pin 7 for arduino uno #define XP 28 // can be a digital pin 6 for arduino uno #define TS_MINX 170 //150 #define TS_MINY 170 //120 #define TS_MAXX 955 //920 #define TS_MAXY 920 //920 TouchScreen ts = TouchScreen(XP, YP, XM, YM, 300); #define LCD_CS A3 #define LCD_CD A2 #define LCD_WR A1 #define LCD_RD A0 // optional #define LCD_RESET A4
@devi-uu3ts
@devi-uu3ts 5 жыл бұрын
@@fionasoon1 Thank you for replying me sir,as we are not using touch screen but in the code it shows a touch screen so still we can use the same code?
@kevinaxelramirezsanchez594
@kevinaxelramirezsanchez594 5 жыл бұрын
que tal! tendrás el link de descarga de el programa Grbl Controller
@fionasoon1
@fionasoon1 5 жыл бұрын
Estoy bien. Gracias. Al adquirir el CNC 2418, se incluye el CD del software.
@Michael-lo3ht
@Michael-lo3ht 5 жыл бұрын
Part 1 kzbin.info/www/bejne/lZXaYXVthchmjck
@dipikapatel4947
@dipikapatel4947 5 жыл бұрын
Hi Fiona can you help if you don't mind my MIL keeps digging dapper than my material can you advise how i change this? also it keeps going over the image 3 times
@fionasoon1
@fionasoon1 5 жыл бұрын
Need to calibrate the height of the drill from the surface of the acrylic board and zero the ZYZ position in the GBRL control software.
@AssePwn
@AssePwn 5 жыл бұрын
What grblControl version is this and where did you get it? Mine is Grblcontrol(Candle_1.1.7 ) and there is plenty of lines it cant read when using this method to get the code.
@AssePwn
@AssePwn 5 жыл бұрын
It looks like my version is newer than yours, did you check the "Ignore error responses" checkbox for it to be able to read the lines?
@fionasoon1
@fionasoon1 5 жыл бұрын
Gbrl control 0.8, Inkscape 0.93. Use the old version of Gbrl control
@SuonidiBologna
@SuonidiBologna 5 жыл бұрын
It works very well, thank you for sharing the code.
@nigeldolman954
@nigeldolman954 5 жыл бұрын
Can you please show the subsequent reduction to graphene?
@1nformatica
@1nformatica 6 жыл бұрын
Hi, where is part 1? I am interested in the workflow from Inkscape to Grbl. Thanks.
@fionasoon1
@fionasoon1 6 жыл бұрын
Wow, I watched your video too. Very inspiring! All parts are in Fiona Soon 's video list. Type Fiona Soon in search box. Then, you will see part one.
@1nformatica
@1nformatica 6 жыл бұрын
Ah yes! I see now. My bad! Very interesting channel, not the usual stuff.
@PhilipTaramai
@PhilipTaramai 6 жыл бұрын
Throw the 3rd board out, looks dodgy :-)