Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

Sort By

USER REQUESTS

first | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 last
Scott Caskey
caskscob

posted on 2015/04/15 04:21:42 PM CEST

Graphics & LCD

C code for I2C 20X4 LCD with PIC16F1826

If someone could assist me with a code example for using a 20x4 LCD on I2C bus on a small PIC16 I'd appreciate it. I can't find examples of this anywhere.

Thanks,

Carlos Bernardes
carlosb.

posted on 2015/03/09 01:26:38 AM CET

Graphics & LCD > OLED

matrix 8x8+max7219+Sound+Uart

I would like to make available using the MAX7219 example with 7 segments
button and sound or watch would be very useful to learn
tried to put together the sound matriz8x8 but is catching all need some more examples of a conjugate function have a pic Easy v7, thank you!



*/
#define IMG_SIZE 20
#include "8X8 FONT.h"
#include "LED_Driver.h"


// Serial 7-seg Display connections
sbit sfr Chip_Select1 at RE0_bit;
sbit sfr Chip_Select_Direction1 at TRISE0_bit;

sbit sfr Chip_Select2 at RA5_bit;
sbit sfr Chip_Select_Direction2 at TRISA5_bit;
// Serial 7-seg Display connections



char i;
const unsigned char intro[] = " mikroElektronika 8x8Rclick"; // Text to display
void main() {
SPI1_Init(); // Initialize SPI module
max7219_init(1); // initialize max7219
max7219_init(2); // initialize max7219

slide_text_double(intro); // Text slide animation

while(1){
for(i = 0 ; i < IMG_SIZE ; i++){ // Play graphical sequence forward
display_image_const(img1[i], 1);
display_image_const(img2[i], 2);
Delay_ms(120);
}
Delay_ms(600);
for(i = IMG_SIZE-1 ; i > 0 ; i--){ // Play graphical sequence backward
display_image_const(img1[IMG_SIZE-1-i], 1); // Reverse and play forward 8x8 R click in first mikroBUS socket
display_image_const(img2[i] ,2);
Delay_ms(120);
}
}
}

THIS TYPE


Hello !, Cool would like to see a change
message by the computer, a sound beep type like this:

void Melody() { // Plays the melody "Yellow house"
Tone1(); Tone2(); Tone3(); Tone3();
Tone1(); Tone2(); Tone3(); Tone3();
Tone1(); Tone2(); Tone3();
Tone1(); Tone2(); Tone3(); Tone3();
Tone1(); Tone2(); Tone3();
Tone3(); Tone3(); Tone2(); Tone2(); Tone1();
}


or type this:

UART1_Init(4800); // initialize UART1 module
Delay_ms(100);

while (1) {
if (UART_Data_Ready() == 1) { // if data is received
UART_Read_Text(output, "OK", 10); // reads text until 'OK' is found
UART_Write_Text(output); // sends back text
}
}

thank you!

Mohammed Abd-Alqader
mohammedwaleed

posted on 2015/03/04 02:43:17 AM CET

Graphics & LCD > TFT

EasyMx Pro v7 for STM32 ARM

I have a Problem in TFT Code loading >>>

When I loading an example for Easy TFT The code build Successful and TFT Screen Work fine but when i generate my code in visual tft program then build the code in mikroC pro for arm the TFT Screen Empty >>>

and when i open the example code for easy tft on the MikroC Pro for arm and build it on the program then load the code to the EasyMx Pro v7 STM32 ARM the tft screen empty ...

any help and thank you

lin shunren
shunrenlin

posted on 2015/01/15 06:10:05 AM CET

Graphics & LCD > GLCD

SmartGLCD rev_1.51

Hi,Recently I purchase a lisence for the visual glcd but I found there are no hardware selection for smartGLCD rev1.51. Pls help to guide me how to use visual glcd to generate the code for smart glcd? Thanks!

Shunren Lin

Ferenc Forgó
forgofe

posted on 2014/09/02 12:41:22 PM CEST

Graphics & LCD > TFT

working XPT2046 driver

I am looking for a working example code, or library for XPT2046(If I am right its equal to ADS7843), if possible in mikroC PRO for PIC32. Thank you

first | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 last