Questions tagged [chipkit]
chipKIT is a family of boards and associated Arduino IDE core based around the Microchip PIC32 microcontrollers. They range from the low-end 40MHz PIC32MX1xx/2xx series right up to the powerful 200MHz PIC32MZ chips.
4 questions
0
votes
1
answer
121
views
Super fast UART transimission return error
The code was based on Fahad Mirza's very helpful example here Send structure through Serial
The Sender's code now became
struct Gyro_data_structure
{
char command_name[5];
float gyro_X;
float ...
0
votes
1
answer
141
views
Using chipKIT WiFi Shield with an Arduino
I'm beginning with Arduino and I have to make two of them communicate via WiFi. I'm going to implement the examples for a WiFi Client and WiFi Server in their tutorials page.
The problem is I only ...