Category: Embedded Development

32 x Servo Hat

  Finally had the time to assemble a 32 x Servo Hat. Have not written any code for it yet, but always nice to see SWD answering and led’s coming up with a 10mA current on the lab psu – Things look normal. Will get down to wrapping up a servo controller and assembling a…

Read the full article

3.3V Switched PSU

This little fellow have the same layout as a classic 7805 and is a 35V to 3.3V switched regulator capable of 600mA. The circuit handle 42V, but the capacitors will limit the circuit to 35V I think. I just fancied making this as a bread-/vero-board breakout. The entire circuit is 20×10 mm and occupy less…

Read the full article

Backfiring 3-phase motor

Reviewed the design today and the issue is that the way I am testing easily unleash spikes on several hundreds volt since I disconnect a coil with energy in it. The voltage can be extremely high even if it’s close to no energy in it. Two solutions are suggested (1) avoid disconnecting the motor while…

Read the full article

3-Phase Micro – printf

int main(void) {   int x=0,y;   char buf[100];   AppInit();   printf(“\nBasicPI Micro 3-Phase Controller!\n”);   while(true)   {     nanodelay(1000000);     printf(“%d tick\n”,x);     x++;   } } The 3-Phase micro controller use a RS485 (RS-X) connector. I have not enabled the RS-X package yet, but I always start with a simple printf…

Read the full article

New PCB fun

Two more PCB’s arriving from factory. The large board is the communication adapter. This is so far the most complex board I have made so will be a bit of a job to test it out step by step. Happy to see that RJ45 and USB connector fit correctly. The red board is the mini…

Read the full article