GithubHelp home page GithubHelp logo

mahdasystem / tm1637 Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 9 KB

TM1637 driver for AVR (ATmega32), STM32 (HAL) and ESP32 (esp-idf)

License: MIT License

C 100.00%
7seg 7segment atmega avr esp-idf esp32 stm32 stm32-hal tm1637 tm1637display

tm1637's Introduction

TM1637 Library

Library for handling TM1637 LED display driver.

Library Features

  • Support for dimming display

Hardware Support

It is easy to port this library to any platform. But now it is ready for use in:

  • AVR (ATmega32)
  • STM32 (HAL)
  • ESP32 (esp-idf)

How To Use

  1. Add TM1637.h and TM1637.c files to your project. It is optional to use TM1637_platform.h and TM1637_platform.c files (open and config TM1637_platform.h file).
  2. Initialize platform-dependent part of handler.
  3. Call TM1637_Init().
  4. Call TM1637_ConfigDisplay() to config display.
  5. Call other functions and enjoy.

Example

Using TM1637_platform files
#include <stdio.h>
#include "TM1637.h"
#include "TM1637_platform.h"

int main(void)
{
  TM1637_Handler_t Handler;

  TM1637_Platform_Init(&Handler);
  TM1637_Init(&Handler);
  TM1637_ConfigDisplay(&Handler, 7, TM1637DisplayStateON);

  while (1)
  {
    // Display the number 8 and Decimal Point in the SEG1 
    TM1637_SetSingleDigit_HEX(&Handler, 8 | TM1637DecimalPoint, 0);
  }

  TM1637_DeInit(&Handler);
  return 0;
}
Without using TM1637_platform files (AVR)
#include <stdio.h>
#include <avr/io.h>
#define F_CPU 8000000
#include <util/delay.h>
#include "TM1637.h"

#define TM1637_DIO_DDR   DDRA
#define TM1637_DIO_PORT  PORTA
#define TM1637_DIO_PIN   PINA
#define TM1637_DIO_NUM   0

#define TM1637_CLK_DDR   DDRA
#define TM1637_CLK_PORT  PORTA
#define TM1637_CLK_NUM   1


static void
TM1637_PlatformInit(void)
{
  TM1637_CLK_DDR |= (1<<TM1637_CLK_NUM);
  TM1637_DIO_DDR |= (1<<TM1637_DIO_NUM);
}

static void
TM1637_PlatformDeInit(void)
{
  TM1637_CLK_DDR &= ~(1<<TM1637_CLK_NUM);
  TM1637_CLK_PORT &= ~(1<<TM1637_CLK_NUM);
  TM1637_DIO_DDR &= ~(1<<TM1637_DIO_NUM);
  TM1637_DIO_PORT &= ~(1<<TM1637_DIO_NUM);
}

static void
TM1637_DioConfigOut(void)
{
  TM1637_DIO_DDR |= (1<<TM1637_DIO_NUM);
}

static void
TM1637_DioConfigIn(void)
{
  TM1637_DIO_DDR &= ~(1<<TM1637_DIO_NUM);
}

static void
TM1637_DioWrite(uint8_t Level)
{
  if (Level)
    TM1637_DIO_PORT |= (1<<TM1637_DIO_NUM);
  else
    TM1637_DIO_PORT &= ~(1<<TM1637_DIO_NUM);
}

static uint8_t
TM1637_DioRead(void)
{
  uint8_t Result = 1;
  Result = (TM1637_DIO_PIN & (1 << TM1637_DIO_NUM)) ? 1 : 0;
  return Result;
}

static void
TM1637_ClkWrite(uint8_t Level)
{
  if (Level)
    TM1637_CLK_PORT |= (1<<TM1637_CLK_NUM);
  else
    TM1637_CLK_PORT &= ~(1<<TM1637_CLK_NUM);
}

static void
TM1637_DelayUs(uint8_t Delay)
{
  for (; Delay; --Delay)
    _delay_us(1);
}


int main(void)
{
  TM1637_Handler_t Handler;

  Handler.PlatformInit = TM1637_PlatformInit;
  Handler.PlatformDeInit = TM1637_PlatformDeInit;
  Handler.DioConfigOut = TM1637_DioConfigOut;
  Handler.DioConfigIn = TM1637_DioConfigIn;
  Handler.DioWrite = TM1637_DioWrite;
  Handler.DioRead = TM1637_DioRead;
  Handler.ClkWrite = TM1637_ClkWrite;
  Handler.DelayUs = TM1637_DelayUs;

  TM1637_Init(&Handler);
  TM1637_ConfigDisplay(&Handler, 7, TM1637DisplayStateON);

  while (1)
  {
    // Display the number 8 and Decimal Point in the SEG1 
    TM1637_SetSingleDigit_HEX(&Handler, 8 | TM1637DecimalPoint, 0);
  }

  TM1637_DeInit(&Handler);
  return 0;
}

tm1637's People

Contributors

hossein-m98 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.