Neopixel
Neopixelstripe.c
gehe zur Dokumentation dieser Datei
1 /****************************************************************************/
23 /****************************************************************************/
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <p18cxxx.h>
30 #include <xc.h>
31 #include "system.h" // use "" for Includes in aktive Projectdirectory
32 #include <stdint.h>
33 
34 /****************************************************************************/
38 #define LED_TRIS TRISAbits.RA0
39 #define LED LATAbits.LATA0
40 
41 #define NEOPIXEL_TRIS TRISBbits.RB0
42 #define NEOPIXEL_OUT LATBbits.LATB0
43 
44 
45 #define TRUE = 1
46 #define FALSE = 0
47 
48 /****************************************************************************/
52 uint8_t gbyte ;
53 uint8_t rbyte ;
54 uint8_t bbyte ;
55 uint8_t bytetosend ;
56 uint8_t pixel;
57 uint8_t j;
58 uint8_t limit;
59 uint8_t colorvalue;
60 uint8_t stripelength = 30; // Number of pixels in Stripe
61 
62 uint16_t i;
63 uint16_t runs;
64 uint16_t loops;
65 
66 /****************************************************************************/
70 uint8_t greens[30];
71 uint8_t reds[30];
72 uint8_t blues[30];
73 
74 /*******************************************************************/
78 uint8_t stripe[30][3];
79 
80 /*******************************************************************/
84 struct pixelcolor{
85  uint8_t gbyte;
86  uint8_t rbyte;
87  uint8_t bbyte;
88 }Pixelcolors[30];
89 
91  uint8_t gbyte;
92  uint8_t rbyte;
93  uint8_t bbyte;
95 
96 /*******************************************************************/
102 struct pxcolor
103 {
104  uint8_t pxgbyte;
105  uint8_t pxrbyte;
106  uint8_t pxbbyte;
107 }pxcolors[30] = {{0,0,0},{1,1,1},{2,2,2},{3,3,3},{4,4,4},{5,5,5},{6,6,6},
108  {7,7,7},{8,8,8},{9,9,9},{10,10,10},{11,11,11},{12,12,12},
109  {13,13,13},{14,14,14},{15,15,15},{16,16,16},{0,0,0},
110  {0,0,0},{0,0,0},{0,0,0},{0,0,0},{0,0,0},{0,0,0},{0,0,0},
111  {0,0,0},{0,0,0},{0,0,0},{0,0,0},{0,0,0},},
112  pxred ={0x00,0xff,0x00},
113  pxgreen ={0xff,0x00,0x00},
114  pxyellow ={0xff,0xff,0x00},
115  pxpink ={0x00,0xff,0xff},
116  pxturkis ={0xff,0x00,0xff},
117  pxdark ={0x00,0x00,0x00},
118  pxwhite ={0xff,0xff,0xff},
119  pxblue ={0x00,0x00,0xff};
120 
121  /* TODO write stripe rewrite with predefined colors and pointer to it */
122 
123 // Struct of Pointers ptr.gbyte,ptr.rbyte,ptr.bbyte
124 // declare Pointer of type struct PXColor : struct PXColor *ptr
125 // Pointer points to PXColors first element: = PXColors
126 struct pxcolor *wr_ptr = &pxcolors ; // declare write pointer
127 struct pxcolor *rd_ptr = &pxcolors ; // declare read pointer
128 struct pxcolor *end_ptr = &pxcolors ; // declare end pointer
129 static struct pxcolor *strt_ptr = &pxcolors ; // declare strt pointer
130 
131 /*******************************************************************/
135 void Low(void);
136 void High(void);
137 void Res(void);
138 void Warte(uint16_t);
139 
140 void Init_Stripe(void);
141 void Init_PXColors(uint8_t,uint8_t,uint8_t);
142 void Init_Pixelcolors(uint8_t);
143 void NeoInit (uint8_t);
144 
145 void Prepare_Pixel(uint8_t);
146 
147 void Write_Byte(uint8_t);
148 void Write_Pixel(uint8_t,uint8_t,uint8_t);
149 void Write_Stripe(uint8_t,uint8_t,uint8_t);
150 void Write_Stripe_Mono(struct pxcolor *rd_ptr);
151 void Write_PXColors2Pixel(void);
152 void Write_PXColors2pixel2(void);
153 
154 void Moving_Bloc(void);
155 
156  /* TODO Add Prototypes. */
157 
158 /*******************************************************************/
167 void Warte(uint16_t loops)
168 {
169  for (i=0;i<loops;i++)
170  {
171  __delay_ms(10);
172  }
173 }
174 
175 /*******************************************************************/
184 void Low()
185 {
186  NEOPIXEL_OUT = 1; // set High
187  _delay(2); // 2 = 336ns
188  NEOPIXEL_OUT = 0; // set Low
189  _delay(5);
190 }
191 
192 /*******************************************************************/
201 void High()
202 {
203  NEOPIXEL_OUT = 1; // set High
204  _delay(7); // 5=582ns 7=748 ns
205  NEOPIXEL_OUT = 0; // set Low
206  _delay(1) ; // 1=580ns
207 }
208 
209 /*******************************************************************/
218 void Res()
219 {
220  NEOPIXEL_OUT = 0; // set Low
221  _delay(600) ;
222 }
223 
224 /*******************************************************************/
233 void Write_Stripe(uint8_t gbyte,uint8_t rbyte,uint8_t bbyte)
234 {
235  limit =1;
236  for (runs =0; runs<limit;runs++)
237  {
238  for (pixel =0 ; pixel<runs;pixel++)
239  {
240  Write_Byte(gbyte);
241  Write_Byte(rbyte);
242  Write_Byte(bbyte);
243  }
244  Res();
245  __delay_ms(5);
246 
247  if (limit<31) limit++ ;
248  else limit =1 ;
249  }
250  Warte(50);
251  }
252 
253 /*******************************************************************/
258 void Write_Stripe_New(struct pxcolor *rd_ptr)
259 {
260  uint8_t a ;
261  for (a=0;a< stripelength ;a++)
262  {
263  Write_Byte(rd_ptr -> pxgbyte); // Pointer to PXGbyte
264  Write_Byte(rd_ptr -> pxrbyte);
265  Write_Byte(rd_ptr -> pxbbyte);
266  rd_ptr++ ;
267  }
268 }
269 
270 /*******************************************************************/
275 void Write_Stripe_Mono(struct pxcolor *rd_ptr)
276 {
277  uint8_t a ;
278  for (a=0;a< stripelength ;a++)
279  {
280  Write_Byte(rd_ptr -> pxgbyte); // Pointer to PXGbyte
281  Write_Byte(rd_ptr -> pxrbyte);
282  Write_Byte(rd_ptr -> pxbbyte);
283  }
284 }
285 
286 /*******************************************************************/
293 void Write_Pixel(uint8_t gbyte,uint8_t rbyte,uint8_t bbyte)
294 {
295  Write_Byte(gbyte);
296  Write_Byte(rbyte);
297  Write_Byte(bbyte);
298 }
299 
300 /*******************************************************************/
308 void Write_Byte(uint8_t bytetosend)
309 {
310  uint8_t i;
311  uint8_t mask = 128 ;
312 
313  for (i=0 ; i<8 ; i++)
314  {
315  if (bytetosend & mask) High();
316  else Low();
317  mask = mask>>1;
318  }
319 }// write_byte
320 
321 /*******************************************************************/
328 void Init_Stripe(void)
329 {
330 uint8_t a=0;
331 
332 // for (a=0;a<7;a++)
333 a=0;
334  stripe[a][0] = 0xFF ;
335  stripe[a][1] = 0x00 ;
336  stripe[a][2] = 0x00 ;
337 
338  a=1;
339  stripe[a][0] = 0x00 ;
340  stripe[a][1] = 0xFF ;
341  stripe[a][2] = 0x00 ;
342 
343  a=2;
344  stripe[a][0] = 0x00 ;
345  stripe[a][1] = 0x00 ;
346  stripe[a][2] = 0xFF ;
347 
348  a=3;
349  stripe[a][0] = 0xFF ;
350  stripe[a][1] = 0x00 ;
351  stripe[a][2] = 0xFF ;
352 
353  a=4;
354  stripe[a][0] = 0xFF ;
355  stripe[a][1] = 0xFF ;
356  stripe[a][2] = 0x00 ;
357 
358  a=5;
359  stripe[a][0] = 0x00 ;
360  stripe[a][1] = 0xFF ;
361  stripe[a][2] = 0xFF ;
362 
363  a=6;
364  stripe[a][0] = 0x00 ;
365  stripe[a][1] = 0x00 ;
366  stripe[a][2] = 0x00 ;
367  }
368 // Init_stripe
369 
370 /*******************************************************************/
378 void Init_PXColors(uint8_t g,uint8_t r,uint8_t b)
379 {
380 uint8_t a=0;
381 wr_ptr = pxcolors ; // pointer back to Start
382 for (a=0;a<5;a++)
383  {
384  wr_ptr -> pxgbyte = g; // first 5 Fields RGB Value
385  wr_ptr -> pxrbyte = r;
386  wr_ptr -> pxbbyte = b;
387  wr_ptr++ ;
388  }
389 for (a=5;a< stripelength ;a++)
390  {
391  wr_ptr -> pxgbyte = 0x00; // Fields above 5 0x00 dark
392  wr_ptr -> pxrbyte = 0x00;
393  wr_ptr -> pxbbyte = 0x00;
394  wr_ptr++ ;
395  }
396 }
397 
398 /*******************************************************************/
406 void Init_Pixelcolors_New(uint8_t brightness)
407 {
408 uint8_t a=0, b=0, g=0, r=0;
409 wr_ptr = pxcolors ; // pointer back to Start
410 
411 for (a=0;a<stripelength;a++)
412  {
413  if (a < 4)
414  {b=0x00 ;g= brightness;r= 0x00; } // rot
415  else if ((a > 4)&(a<8) )
416  {b= 0x00;g=brightness;r=0x00 ;} // orange
417  else if ((a > 8)&(a<12) )
418  {b= brightness;g=brightness;r=0x00;} // gelb
419  else if ((a > 12)&(a<16) )
420  {b= brightness;g=0x00;r=0x00;} //grün
421  else if ((a > 20)&(a<24) )
422  {b= 0x00;g=brightness;r=brightness;} //türkis
423  else if ((a > 24)&(a<28) )
424  {b= 0x00;g=0x00;r=brightness;} //blau
425  else if ((a > 28)&(a< stripelength))
426  {b= 0x00; g=brightness; r=brightness;} //lila
427 
428  wr_ptr -> pxgbyte = b;
429  wr_ptr -> pxrbyte = g;
430  wr_ptr -> pxbbyte = r;
431  wr_ptr++ ;
432 
433  }
434 }
435 
436 /*******************************************************************/
445 {
446 uint8_t a;
447 for (a=0;a<240;a++)
448  {
449  Write_Byte(rd_ptr -> pxgbyte); // Pointer to PXGbyte
450  Write_Byte(rd_ptr -> pxrbyte);
451  Write_Byte(rd_ptr -> pxbbyte);
452  rd_ptr++ ; // next Pixel
453  if (rd_ptr >= end_ptr) rd_ptr = pxcolors ;
454  }
455 }
456 
457 /*******************************************************************/
466 {
467 uint8_t a;
468 for (a=0;a<stripelength;a++)
469  {
470  Write_Byte(rd_ptr -> pxgbyte); // Pointer to PXGbyte
471  Write_Byte(rd_ptr -> pxrbyte);
472  Write_Byte(rd_ptr -> pxbbyte);
473  rd_ptr-- ; // next Pixel
474  if (rd_ptr <= strt_ptr) rd_ptr = end_ptr ;
475  }
476 }
477 /*******************************************************************/
485 void Init_Pixelcolors(uint8_t brightness)
486 {
487 uint8_t a=0, b=0, g=0, r=0;
488 for (a=0;a<stripelength;a++)
489  {
490  if (a < 5)
491  {b= brightness;g= 0x00;r= 0x00; }
492  else if ((a > 5)&(a<10) )
493  {b= 0x00;g=brightness;r=0x00 ;}
494  else if ((a > 10)&(a<15) )
495  {b= 0x00;g=0x00;r=brightness;}
496  else if ((a > 15)&(a<20) )
497  {b= brightness;g=0x00;r=0x00;}
498  else if ((a > 20)&(a<25) )
499  {b= 0x00;g=brightness;r=0x00;}
500  else if ((a > 25)&(a<stripelength))
501  {b= 0x00; g=0x00; r=brightness;}
502 
503  Pixelcolors[a].gbyte = b ;
504  Pixelcolors[a].rbyte = g ;
505  Pixelcolors[a].bbyte = r ;
506  }
507 }
508 
509 /*******************************************************************/
516 void NeoInit (uint8_t colorvalue)
517 {
518  uint8_t NeoPixel;
519 for (NeoPixel = 0; NeoPixel < stripelength ; NeoPixel++)
520  {
521  if (NeoPixel < 5)
522  { greens[NeoPixel] = 0; blues[NeoPixel] = 0; reds[NeoPixel] = colorvalue; }
523  else if ((NeoPixel >= 5) & (NeoPixel < 10))
524  { greens[NeoPixel] = 0; blues[NeoPixel] = colorvalue; reds[NeoPixel] = 0; }
525  else if ((NeoPixel >= 10) & (NeoPixel < 15))
526  { greens[NeoPixel] = 0; blues[NeoPixel] = colorvalue; reds[NeoPixel] = colorvalue; }
527  else if ((NeoPixel >= 15) & (NeoPixel < 20))
528  { greens[NeoPixel] = colorvalue; blues[NeoPixel] = 0; reds[NeoPixel] = 0; }
529  else if ((NeoPixel >= 20) & (NeoPixel < 25))
530  { greens[NeoPixel] = colorvalue; blues[NeoPixel] = 0; reds[NeoPixel] = colorvalue; }
531  else if ((NeoPixel >= 25) & (NeoPixel < stripelength ))
532  { greens[NeoPixel] = colorvalue; blues[NeoPixel] = colorvalue; reds[NeoPixel] = 0; }
533  }
534 }
535 
536 /*******************************************************************/
543 void NeoInit_New (uint8_t colorvalue)
544 {
545  uint8_t a,b,r,g ;
546  wr_ptr = pxcolors ; // pointer back to Start
547  for (a = 0; a < stripelength ; a++)
548  {
549  if (a < 5)
550  {g =0;b=0;r=colorvalue;}
551  else if ((a >= 5) & (a < 10))
552  {g =0;b=colorvalue;r=0;}
553  else if ((a >= 10) & (a < 15))
554  {g =0;b=colorvalue;r=colorvalue;}
555  else if ((a >= 15) & (a < 20))
556  {g =colorvalue;b=0;r=0;}
557  else if ((a >= 20) & (a < 25))
558  {g =colorvalue;b=0;r=colorvalue;}
559  else if ((a >= 25) & (a < stripelength ))
560  {g =colorvalue;b=colorvalue;r=0;}
561 
562  wr_ptr -> pxgbyte = g;
563  wr_ptr -> pxrbyte = r;
564  wr_ptr -> pxbbyte = b;
565  wr_ptr++ ;
566  }
567 }
568 
569 /*******************************************************************/
576 void Prepare_Pixel(uint8_t j)
577 {
578 uint8_t b=0;
579 for (b=0;b<3;b++)
580  {
581  gbyte = stripe[j][b];
582  rbyte = stripe[j][b];
583  bbyte = stripe[j][b];
584  }
585 }
586 // prepare_pixel
587 
588 
589 
590 //void increase(unsigned char G,unsigned char R,unsigned char B)
591 /*{
592  for (c=0;c<255;c=c+5)
593  {
594  for (a=0;a<stripelenght;a++)
595  {
596  colorvalue = c;
597  gbyte=G;
598  rbyte=R;
599  bbyte=colorvalue;
600  Write_Pixel(gbyte,rbyte,bbyte);
601  }
602  warte(1);
603  }
604 }*/
605 
606 /*******************************************************************/
612 void Moving_Bloc(void)
613 {
614  uint8_t a,c;
615  for (a=0;a<10;a++)
616  {
617  Init_PXColors(0xFF,0x00,0x00);
618  for (c=0;c< stripelength ;c++)
619  {
620  rd_ptr = pxcolors ; // pointer back to Start
621  rd_ptr = rd_ptr + c ;
623  Res();
624  Warte(2);
625  }
626  }
627  for (a=0;a<10;a++)
628  {
629  Init_PXColors(0x00,0xff,0xff);
630  for (c=0;c< stripelength ;c++)
631  {
632  rd_ptr = pxcolors ; // pointer back to Start
633  rd_ptr = rd_ptr + c ;
635  Res();
636  Warte(2);
637  }
638  }
639 }
640 
641 /*******************************************************************/
648 void Moving_Bloc2(void)
649 {
650  uint8_t a,c;
651  for (a=0;a<10;a++)
652  {
653  Init_Pixelcolors_New(0x7f);
654  for (c=0;c< stripelength ;c++)
655  {
656  rd_ptr = pxcolors ; // pointer back to Start
657  rd_ptr = rd_ptr + c ;
659  Res();
660  Warte(2);
661  }
662  }
663  for (a=0;a<10;a++)
664  {
665  Init_Pixelcolors_New(0xff);
666  for (c=0;c< stripelength ;c++)
667  {
668  rd_ptr = pxcolors ; // pointer back to Start
669  rd_ptr = rd_ptr + c ;
671  Res();
672  Warte(2);
673  }
674  }
675 }
676 
677 /*******************************************************************/
684 void init_uart()
685 {
686  RCSTAbits.SPEN = 1;
687  TRISCbits.TRISC7 = 1;
688  TRISCbits.TRISC6 = 1;
689  TXSTA = 0b00100000;
690  RCSTA = 0b10000000;
691  BAUDCON = 0b00000000;
692  SPBRG = 77;
693 }
694 
695 /*******************************************************************/
702 void uart_send(char ch)
703 {
704  TXREG = ch;
705  while(!TXSTAbits.TRMT);
706 }
707 
708 /*******************************************************************/
715  /* TODO cleanup */
717 {
719  NEOPIXEL_TRIS = 0; // Output
720  LED_TRIS = 0;
721  Init_Stripe();
722  NeoInit(64);
723  end_ptr = rd_ptr + stripelength ; // adjust end_ptr to Stripelength
724 
725  // init_uart();
726  // uart_send("555V");
727 
728  while(1)
729  {
730 
731  unsigned char a,c;
732 
733  //dark
734  rd_ptr = &pxdark ; //Load adress struct pxdark
735  Write_Stripe_Mono(rd_ptr);
736 
737 /*/ printf("The variable rd_ptr is located at address 0x%X\n", &rd_ptr);
738  printf("The value of x is %d\n", x);
739  printf("The pointer p is located at address 0x%X\n", &p);
740  printf("The value of p is 0x%X\n", p);
741  printf("The value pointed to by *p = %d\n", *p); */
742 
743  Moving_Bloc();
744  Warte(50);
745  Moving_Bloc2();
746 
747  NeoInit_New(64);
748  rd_ptr = pxcolors ; // adjust Pointer
749  Write_Stripe_New(rd_ptr);
750  Warte(50);
751  NeoInit_New(10);
752  rd_ptr = pxcolors;
753  Write_Stripe_New(rd_ptr);
754  Warte(50);
755  NeoInit_New(255);
756  rd_ptr = pxcolors ;
757  Write_Stripe_New(rd_ptr);
758  Warte(50);
759 
760  /* TODO Find way to modify value in predefined Pixel */
761  for (a=0;a< stripelength ;a++)
762  {
763  Write_Byte(greens[a]);
764  Write_Byte(reds[a]);
765  Write_Byte(blues[a]);
766  }
767  Warte(50);
768  NeoInit(10);
769 
770  for (a=0;a< stripelength ;a++)
771  {
772  Write_Byte(greens[a]);
773  Write_Byte(reds[a]);
774  Write_Byte(blues[a]);
775  }
776 
777  NeoInit(255);
778  Warte(50);
779 
780  for (a=0;a< stripelength ;a++)
781  {
782  Write_Byte(greens[a]);
783  Write_Byte(reds[a]);
784  Write_Byte(blues[a]);
785  }
786 
787  for (c=0;c<6;c++)
788  {
789  for (a=0;a<5;a++)
790  {
791  Write_Byte(stripe[c][0]) ;
792  Write_Byte(stripe[c][1]) ;
793  Write_Byte(stripe[c][2]) ;
794  }
795  }
796  Warte(50);
797 
798  for (c=0;c<6;c++)
799  {
800  for (a=0;a<5;a++)
801  {
802  Write_Byte(stripe[c][0]) ;
803  Write_Byte(stripe[c][1]) ;
804  Write_Byte(stripe[c][2]) ;
805  }
806  }
807 
808  Warte(50);
809 
810  //dark
811  rd_ptr = &pxdark ; //Load adress struct pxdark
812  Write_Stripe_Mono(rd_ptr);
813 
814  Warte(50);
815 
816 //******************************************
817  for (a=2;a<252;a=a+25)
818  {
819  Init_Pixelcolors(a);
820  for (c=0;c< stripelength ;c++)
821  {
825  }
826 
827  Warte(25);
828  }
829 
830  Warte(50);
831 
832  colorvalue=128;
833 
834  for (c=0;c<255;c++)
835  {
836  colorvalue =c;
837  for (a=0;a<10;a++)
838  {
839  //green
840  gbyte =colorvalue ;//128;
841  rbyte=0;
842  bbyte=0;
844  // Write_Pixel(gbyte,rbyte,bbyte);
845  //red
846  gbyte=0;
847  rbyte=colorvalue ; //128;
848  bbyte=0;
850  // Write_Pixel(gbyte,rbyte,bbyte);
851  //blue
852  gbyte=0;
853  rbyte=0;
854  bbyte=colorvalue ;//128;
856  // Write_Pixel(gbyte,rbyte,bbyte);
857  }
858 
859  Warte(10);
860 
861  for (a=0;a<10;a++)
862  {
863  //blue
864  gbyte=0;
865  rbyte=0;
866  bbyte=colorvalue ; //255;
868  // Write_Pixel(gbyte,rbyte,bbyte);
869  //green
870  gbyte=colorvalue; //255;
871  rbyte=0;
872  bbyte=0;
874  // Write_Pixel(gbyte,rbyte,bbyte);
875  //red
876  gbyte=0;
877  rbyte=colorvalue;//255;
878  bbyte=0;
880  // Write_Pixel(gbyte,rbyte,bbyte);
881  }
882 
883  Warte(10);
884 
885  for (a=0;a<10;a++)
886  {
887  //red
888  gbyte=0;
889  rbyte=colorvalue;//255;
890  bbyte=0;
892  //blue
893  gbyte=0;
894  rbyte=0;
895  bbyte=colorvalue;//255;
897  //green
898  gbyte=colorvalue;//255;
899  rbyte=0;
900  bbyte=0;
902  }
903 
904  Warte(10);
905  // colorvalue = colorvalue -1;
906  }
907 
908 //blue on
909  rd_ptr = &pxblue ; //Load adress struct pxbluek
910  Write_Stripe_Mono(rd_ptr);
911 
912 //blue fading
913  for (c=0;c<255;c=c+5) // Helligkeit
914  {
915  colorvalue = c;
916  gbyte=0;
917  rbyte=0;
919  for (a=0;a< stripelength ;a++)
920  {
922  }
923  Warte(1);
924  }
925 
926  for (c=255;c>0;c=c-5)
927  {
928  colorvalue = c;
929  gbyte=0;
930  rbyte=0;
932  for (a=0;a< stripelength ;a++)
933  {
935  }
936  Warte(1);
937  }
938 
939  //red on
940  rd_ptr = &pxred ; //Load adress struct pxred
941  Write_Stripe_Mono(rd_ptr);
942 
943 // red fading
944  for (c=0;c<255;c=c+5) // Helligkeit
945  {
946  colorvalue = c;
947  gbyte=0;
949  bbyte=0;
950  for (a=0;a< stripelength ;a++)
951  {
953  }
954  Warte(1);
955  }
956 
957  for (c=255;c>0;c=c-5)
958  {
959  colorvalue = c;
960  gbyte=0;
962  bbyte=0;
963  for (a=0;a< stripelength ;a++)
964  {
966  }
967  Warte(1);
968  }
969 
970  //green on
971  rd_ptr = &pxgreen ; //Load adress struct pxgreen
972  Write_Stripe_Mono(rd_ptr);
973 
974  for (c=0;c<255;c=c+5) // Helligkeit
975  {
976  colorvalue = c;
978  rbyte=0;
979  bbyte=0;
980  for (a=0;a< stripelength ;a++)
981  {
983  }
984  Warte(1);
985  }
986 
987  for (c=255;c>0;c=c-5)
988  {
989  colorvalue = c;
991  rbyte=0;
992  bbyte=0;
993  for (a=0;a< stripelength ;a++)
994  {
996  }
997  Warte(1);
998  }
999 
1000  //yellow
1001  rd_ptr = &pxyellow ; //Load adress struct pxyellow
1002  Write_Stripe_Mono(rd_ptr);
1003 
1004  for (c=0;c<255;c=c+5) // Helligkeit
1005  {
1006  colorvalue = c;
1007  gbyte=colorvalue;
1008  rbyte=colorvalue;
1009  bbyte=0;
1010  for (a=0;a< stripelength ;a++)
1011  {
1013  }
1014  Warte(1);
1015  }
1016 
1017  for (c=255;c>0;c=c-5)
1018  {
1019  colorvalue = c;
1020  gbyte=colorvalue;
1021  rbyte=colorvalue;
1022  bbyte=0;
1023  for (a=0;a< stripelength ;a++)
1024  {
1026  }
1027  Warte(1);
1028  }
1029 
1030  //pink
1031  rd_ptr = &pxpink ; //Load adress struct pxpink
1032  Write_Stripe_Mono(rd_ptr);
1033 
1034  for (c=0;c<255;c=c+5) // Helligkeit
1035  {
1036  colorvalue = c;
1037  gbyte=0;
1038  rbyte=colorvalue;
1039  bbyte=colorvalue;
1040  for (a=0;a< stripelength ;a++)
1041  {
1043  }
1044  Warte(1);
1045  }
1046 
1047  for (c=255;c>0;c=c-5)
1048  {
1049  colorvalue = c;
1050  gbyte=0;
1051  rbyte=colorvalue;
1052  bbyte=colorvalue;
1053  for (a=0;a< stripelength ;a++)
1054  {
1056  }
1057  Warte(1);
1058  }
1059 
1060  //tuerkis
1061  rd_ptr = &pxturkis ; //Load adress struct pxturkis
1062  Write_Stripe_Mono(rd_ptr);
1063 
1064  for (c=0;c<255;c=c+5) // Helligkeit
1065  {
1066  colorvalue = c;
1067  gbyte=colorvalue;
1068  rbyte=0;
1069  bbyte=colorvalue;
1070  for (a=0;a< stripelength ;a++)
1071  {
1073  }
1074  Warte(1);
1075  }
1076 
1077  for (c=255;c>0;c=c-5)
1078  {
1079  colorvalue = c;
1080  gbyte=colorvalue;
1081  rbyte=0;
1082  bbyte=colorvalue;
1083  for (a=0;a< stripelength ;a++)
1084  {
1086  }
1087  Warte(1);
1088  }
1089 //dark
1090  rd_ptr = &pxdark ; //Load adress struct pxdark
1091  Write_Stripe_Mono(rd_ptr);
1092 
1093 // white fading
1094  for (c=0;c<255;c=c+5) // Helligkeit
1095  {
1096  colorvalue = c;
1097  gbyte=colorvalue;
1098  rbyte=colorvalue;
1099  bbyte=colorvalue;
1100  for (a=0;a< stripelength ;a++)
1101  {
1103  }
1104  Warte(1);
1105  }
1106 
1107  for (c=255;c>0;c=c-5)
1108  {
1109  colorvalue = c;
1110  gbyte=colorvalue;
1111  rbyte=colorvalue;
1112  bbyte=colorvalue;
1113  for (a=0;a< stripelength ;a++)
1114  {
1116  }
1117  Warte(1);
1118  }
1119 
1120 //dark
1121  rd_ptr = &pxdark ; //Load adress struct pxdark
1122  Write_Stripe_Mono(rd_ptr);
1123 
1124  LED = ~LED;
1125  }
1126 }
1127 //main
1128 
1129 // no code behind this line
1130 
struct pxcolor pxred[30]
void Res(void)
create Reset code Treset >= 50µs Low
struct pxcolor pxturkis[30]
void Write_PXColors2Pixel(void)
Values stored in Array simple Testpattern to learn Pointer.
uint8_t bytetosend
struct pxcolor pxpink[30]
uint8_t stripelength
uint8_t colorvalue
struct pixelcolor Pixelcolors[30]
struct pxcolor pxwhite[30]
struct pxcolor pxcolors[30]
void uart_send(char ch)
only for debugging
void Prepare_Pixel(uint8_t)
copys Pixelvalues
struct pxcolor pxblue[30]
#define LED
uint8_t reds[30]
void Moving_Bloc(void)
moves bloc of pixel left to right and viceversa
uint8_t limit
void Init_Pixelcolors_New(uint8_t brightness)
create Values to store in Array of struct PXColors simple Testpattern to learn Pointer ...
uint8_t pxrbyte
void Init_Stripe(void)
create Values to store in 2 dimentional Array
void Warte(uint16_t)
dalays for loops times 10ms
void Moving_Bloc2(void)
moves bloc of pixel left to right and viceversa
struct pxcolor * end_ptr
void Init_Pixelcolors(uint8_t)
create Values to store in Array of struct Pixelcolors simple Testpattern
void Write_Stripe_Mono(struct pxcolor *rd_ptr)
writes whole stripe with pointer to array)monocolor
#define NEOPIXEL_TRIS
uint8_t bbyte
uint8_t blues[30]
void Low(void)
create 0 code T0H = 0,35µs High T0L = 0,7µs
void Write_Stripe_New(struct pxcolor *rd_ptr)
writes whole stripe with pointer to array)monocolor
void Write_Stripe(uint8_t, uint8_t, uint8_t)
writes whole stripe in runs ( 0 to 30)
uint8_t bbyte
void init_uart()
only for debugging
uint8_t pxgbyte
struct pxcolor * rd_ptr
uint16_t runs
struct temp_pixelcolor temp_pixelcolors
struct pxcolor pxdark[30]
void Write_Pixel(uint8_t, uint8_t, uint8_t)
writes exactly one Pixel with one Byte for G,R,B
main()
the main code
#define LED_TRIS
struct pxcolor * wr_ptr
uint8_t pxbbyte
struct pxcolor pxgreen[30]
uint8_t rbyte
uint8_t greens[30]
uint8_t pixel
uint8_t gbyte
void Init_PXColors(uint8_t, uint8_t, uint8_t)
create Values to store in Array of struct PXColors simple Testpattern to learn Pointer ...
struct pxcolor pxyellow[30]
uint8_t j
void Write_PXColors2Pixel2(void)
Values stored in Array simple Testpattern to learn Pointer.
uint16_t i
uint8_t stripe[30][3]
void NeoInit_New(uint8_t colorvalue)
create Values to store in Array of struct Pointerbased Routine stolen by "The Signal Path dot com" ...
uint8_t rbyte
uint16_t loops
void ConfigureOscillator(void)
Definition: system.c:24
#define NEOPIXEL_OUT
void High(void)
create 1 code T1H = 0,7µs High T1L = 0,6µs Low
uint8_t gbyte
void Write_PXColors2pixel2(void)
void NeoInit(uint8_t)
create Values to store in Array Routine stolen by "The Signal Path dot com"
void Write_Byte(uint8_t)
splits one Byte in bit to drive Hardware Important! MSB must sent as first