WICED Wi-Fi 101: Lesson 8 Project
4:49
WICED Wi-Fi 101: Lesson 7-5 AWS WICED
13:59
WICED Wi-Fi 101: Lesson 6-3 WWEP
5:32
WICED Wi-Fi 101: Lesson 3-1 Thread
3:18
WICED Wi-Fi 101: Lesson 3-3 Mutex
3:37
WICED Wi-Fi 101: Lesson 3-4 Queue
3:42
WICED Wi-Fi 101: Lesson 3-5 Timer
2:39
Пікірлер
@amedeodeseta6950
@amedeodeseta6950 Ай бұрын
Is it possible to replicate the same thing as the bluetooth connection with the usb dongle by using the pc's bluetooth connection and the terminal to send commands?
@mohanboobalan2204
@mohanboobalan2204 Ай бұрын
Deep
@AW-tc4hy
@AW-tc4hy 3 ай бұрын
Unnecessary complications in power supply. The simple 2 wire port is super efficient and simple as voltage is key. Match it and everything is fine. Greedy crooks use the unnecessary complex scheme to screw people out of their money.
@petertomasovszky136
@petertomasovszky136 3 ай бұрын
Great video, thank you for putting it together!
@jorgeaqr
@jorgeaqr 3 ай бұрын
I think t PSoC Creator is better that modus tool box. The psoc gui is more intuitive and graphical. Here everyone is disorganized, move here move there etc.
@parkerstoops6058
@parkerstoops6058 4 ай бұрын
Does this work for PSoc 6?
@NackDSP
@NackDSP 4 ай бұрын
I came up with the first implementation of CapSense autotuning sitting in the waiting room at the local tire shop in 2009. Good thing I brought my laptop.
@RahulRaavi
@RahulRaavi 6 ай бұрын
Hi Is there any possibility to import generated application to vs code IDE Can you please provide the example of UART receive ISR using Hal drivers for Psoc 63
@shibangshupal2892
@shibangshupal2892 6 ай бұрын
Hi I am using the CY8CKIT-062S2-43012 board but I want to use an external ADC(ADS1256) for more speed and requirements as told by my professor, can you kindly guide me as to how to interface an SPI using the board and directing the information received to the DMA to be transmitted over the WIFI?
@maheshbaldaniya5621
@maheshbaldaniya5621 7 ай бұрын
can you give me this code?
@now_its_dark
@now_its_dark 8 ай бұрын
Is this software still in development, or is there a contemporary software suite which enables this same type of visual development experience?
@Ligby
@Ligby 8 ай бұрын
gonna need 11:06 when my parts show up in a week lmao
@jonathanamalidosan5476
@jonathanamalidosan5476 8 ай бұрын
Where is eventParameter intially declared?
@YouTom92
@YouTom92 9 ай бұрын
Hello, is it possible to buy this board - or get the design data?
@darkprince6112
@darkprince6112 10 ай бұрын
Wait.. I'm not very good with numbers but... "I COMPLETELY UNDERSTAND THE MESSAGE" It's.. US...
@svens.5366
@svens.5366 10 ай бұрын
doing this in 2024. Changing the MAX_SYSCALL interrupt priority must for some reason not be done as described here, because it will cause errors during compile time.
@Jocker_method
@Jocker_method 11 ай бұрын
schematically describe a logic circuit in PSoC Creator; • upload your design to the brochure; • understand the basic structure of the platelet.
@Jocker_method
@Jocker_method 11 ай бұрын
edt can I have a video that allows me to have this description?
@Jocker_method
@Jocker_method 11 ай бұрын
Hello i need someone to talk with me😢. 😊This is my first time doing this course and I would like your help
@0neToWatch
@0neToWatch 11 ай бұрын
Thank you for taking the time to share this info.
@jpechacek80
@jpechacek80 Жыл бұрын
If you were a real engineer, you won't be using an Apple PC.
@giostechnologygiovannyv.ri489
@giostechnologygiovannyv.ri489 Жыл бұрын
2:10 "if you show this to a colleague they'll think you are crazy and they will have to rely only on the pin naming to understand the intended functionality" Alan XD
@Ender_Wiggin
@Ender_Wiggin Жыл бұрын
Please do a video on USB PD 3.1! Thank you for the great video
@Jojangamer13
@Jojangamer13 Жыл бұрын
Doesn't matter how many toolboxes Infineon creats. Everyone is a pain in the ass to configure. Just use one proper Eclipse. Bunch of Path variables which have to be set manually for admin and user depending how you run the program. and then you cant run a simple empty program because it can't start Jlink. Why do I have to work so much before I even begin to work?
@techspace9341
@techspace9341 Жыл бұрын
Fantastic explanation
@emyemy7504
@emyemy7504 Жыл бұрын
What model of PSOC is the development board? psoc 4, 5 or 6?
@ddlc7022
@ddlc7022 Жыл бұрын
The code only slowly dims the LED, it does not slowly increase the brightness.
@mortennielsen9273
@mortennielsen9273 Жыл бұрын
Alan Hawse just gets W after W with these PSoCs.
@306kern5
@306kern5 Жыл бұрын
ModusToolbox Stinks
@seafoxc
@seafoxc Жыл бұрын
If you use the latest version you don't get the 'irq' connection automatic. You have to check the 'dedicated interrupt' box in the input tab.
@tomfinn521
@tomfinn521 Жыл бұрын
#include "project.h" uint16 fingerPos = 0xFFFF; uint16 fingerPosOld = 0xFFFF; int capsenseNotify; int red_read(void); void updateLed() { CYBLE_GATTS_HANDLE_VALUE_NTF_T tempHandle; int currentLed = (!red_read()); if(CyBle_GetState() != CYBLE_STATE_CONNECTED) return; tempHandle.attrHandle = CYBLE_LEDCAPSENSE_LED_CHAR_HANDLE; tempHandle.value.val = (uint8 *)&currentLed; tempHandle.value.len = 1; CyBle_GattsWriteAttributeValue(&tempHandle,0,&cyBle_connHandle,0); } void updateCapsense() { if(CyBle_GetState() != CYBLE_STATE_CONNECTED) return; CYBLE_GATTS_HANDLE_VALUE_NTF_T tempHandle; tempHandle.attrHandle = CYBLE_LEDCAPSENSE_CAPSENSE_CHAR_HANDLE; tempHandle.value.val = (uint8 *)&fingerPos; tempHandle.value.len = 2; CyBle_GattsWriteAttributeValue(&tempHandle,0,&cyBle_connHandle,0); if (capsenseNotify && (fingerPos != fingerPosOld)) { CyBle_GattsNotification(cyBle_connHandle,&tempHandle); fingerPosOld = fingerPos; } } void BleCallBack(uint32 event, void* eventParam) { CYBLE_GATTS_WRITE_REQ_PARAM_T *wrReqParam; switch (event) { case CYBLE_EVT_STACK_ON: case CYBLE_EVT_GAP_DEVICE_DISCONNECTED: capsenseNotify = 0; CyBle_GappStartAdvertisement (CYBLE_ADVERTISING_FAST); pwm_Start(); break; case CYBLE_EVT_GATT_CONNECT_IND: updateLed(); updateCapsense(); pwm_Stop(); break; case CYBLE_EVT_GATTS_WRITE_REQ: wrReqParam = (CYBLE_GATTS_WRITE_REQ_PARAM_T *) eventParam; if(wrReqParam->handleValPair.attrHandle == CYBLE_LEDCAPSENSE_LED_CHAR_HANDLE) { if(CYBLE_GATT_ERR_NONE == CyBle_GattsWriteAttributeValue(&wrReqParam->handleValPair, 0, &cyBle_connHandle, CYBLE_GATT_DB_PEER_INITIATED)) { red_Write(!wrReqParam->handleValPair.value.val[0]); CyBle_GattsWriteRsp(cyBle_connHandle); } } if(wrReqParam->handleValPair.attrHandle == CYBLE_LEDCAPSENSE_CAPSENSE_CAPSENSECCCD_DESC_HANDLE) { CyBle_GattsWriteAttributeValue(&wrReqParam->handleValPair, 0, &cyBle_connHandle, CYBLE_GATT_DB_PEER_INITIATED); capsenseNotify = wrReqParam->handleValPair.value.val[0] & 0x01; CyBle_GattsWriteRsp(cyBle_connHandle); } break; default: break; } } int main() { CyGlobalIntEnable; capsense_Start(); capsense_InitializeEnabledBaselines(); CyBle_Start(BleCallBack); for(;;) { if(!capsense_IsBusy()) { fingerPos=capsense_GetCentroidPos(capsense_LINEAR0_LS); capsense_UpdateEnabledBaselines(); capsense_ScanEnabledWidgets(); updateCapsense(); } CyBle_ProcessEvents(); CyBle_EnterLPM(CYBLE_BLESS_DEEPSLEEP); } } Here is the code if anyone needs it :)
@ChimotanaJugadora
@ChimotanaJugadora Жыл бұрын
Cy Smart isnt available anymore. Can you recommend a similar application ? Or any RF finder would do?
@svens.5366
@svens.5366 10 ай бұрын
Infinion's AIROC Bluetooth Connect App
@nostalgeek2872
@nostalgeek2872 Жыл бұрын
Hello everyone ! Beginner user of our favorite software Wireshark to analyze USB communications, for practical reasons I would like to know how to save the "payload" in the capture file, excluding the USB protocol layers (tokens, PID, handshake ... among other packaging data). I'm using Linux Mint and my skills about programming ang compilating are very very poor. Thanks for your help.
@benguiles6252
@benguiles6252 Жыл бұрын
I just wanna know how this guy is running PSoC Creator on a Mac...
@georgemonroe9683
@georgemonroe9683 Жыл бұрын
PSOC are wonderful to work with. I started with a PSOC 3 then I purchased PSOC 1 parts. Once I determined you need PSOC designer for PSOC 1 and PSOC creator for PSOC 3 I was good to go.
@TheC1tube
@TheC1tube Жыл бұрын
What does PRoC stand for?
@turbowhizkid3171
@turbowhizkid3171 2 жыл бұрын
For my thermometer; I know how to calculate standard deviation, on an M8C, without a math co processor, by making my own eight bit square root function. Bet, you can't do that...
@aniksengupta749
@aniksengupta749 2 жыл бұрын
why we need a UART here?
@jacobkelley257
@jacobkelley257 2 жыл бұрын
I can't seem to find the CySmart dongle anywhere online available to buy. will any bluetooth 4.2 dongle do the trick?
@sucharithaanumula1849
@sucharithaanumula1849 2 жыл бұрын
Thanks for the video
@ekta7371
@ekta7371 2 жыл бұрын
why USb time out error might occur
@ekta7371
@ekta7371 2 жыл бұрын
why USb time out error might occur
@ekta7371
@ekta7371 2 жыл бұрын
why USb time out error might occur
@ekta7371
@ekta7371 2 жыл бұрын
why USb time out error might occur
@dineshsthanki
@dineshsthanki 2 жыл бұрын
Thanks for making a video on how to create projects in Creator. Cypress has been bought by Infineon, I wonder how many of the Cypress Engineers are still around. Looks like some of the development kits are being obsoleted out, plus changes on the ease of reaching to online materials. The phone number is German no US phone available.
@tomfinn521
@tomfinn521 2 жыл бұрын
Is there a solution to the I2C challenge anywhere?
@ekta7371
@ekta7371 2 жыл бұрын
def usb_read(self, size=con.USB_IN_BYTE_SIZE, timeout=None): try: usb_input = self.ep_in.read(size, timeout) except Exception as error: print("ERROR: --- Failed to read. ---") print(self.ep_in.read(size, timeout)) return usb_input def usb_collect_data(self): data_collect = self.usb_read(64,timeout=10000) return data_collect Why it is coming based on above code
@ekta7371
@ekta7371 2 жыл бұрын
def usb_read(self, size=con.USB_IN_BYTE_SIZE, timeout=None): try: usb_input = self.ep_in.read(size, timeout) except Exception as error: print("ERROR: --- Failed to read. ---") print(self.ep_in.read(size, timeout)) return usb_input def usb_collect_data(self): data_collect = self.usb_read(64,timeout=10000) return data_collect Why it is coming based on above code
@ekta7371
@ekta7371 2 жыл бұрын
def usb_read(self, size=con.USB_IN_BYTE_SIZE, timeout=None): try: usb_input = self.ep_in.read(size, timeout) except Exception as error: print("ERROR: --- Failed to read. ---") print(self.ep_in.read(size, timeout)) return usb_input def usb_collect_data(self): data_collect = self.usb_read(64,timeout=10000) return data_collect Why it is coming based on above code
@ekta7371
@ekta7371 2 жыл бұрын
def usb_read(self, size=con.USB_IN_BYTE_SIZE, timeout=None): try: usb_input = self.ep_in.read(size, timeout) except Exception as error: print("ERROR: --- Failed to read. ---") print(self.ep_in.read(size, timeout)) return usb_input def usb_collect_data(self): data_collect = self.usb_read(64,timeout=10000) return data_collect Why it is coming based on above code
@ekta7371
@ekta7371 2 жыл бұрын
def usb_read(self, size=con.USB_IN_BYTE_SIZE, timeout=None): try: usb_input = self.ep_in.read(size, timeout) except Exception as error: print("ERROR: --- Failed to read. ---") print(self.ep_in.read(size, timeout)) return usb_input def usb_collect_data(self): data_collect = self.usb_read(64,timeout=10000) return data_collect Why it is coming based on above code