文档库 最新最全的文档下载
当前位置:文档库 › ST8S dali slave library

ST8S dali slave library

ST8S dali slave library
ST8S dali slave library

March 2011Doc ID 18098 Rev 11/27

AN3298

Application note

STM8S DALI slave library

Introduction

This document describes the implementation of the Digital Addressable Lighting Interface (DALI) into the STM8S 8-bit microcontroller family.

The DALI slave library for STM8S microcontrollers simplifies integration of the DALI slave interface into customer applications. The implementation of DALI into STM8S, together with the various STM8S features (peripherals, computation power, communication interfaces), is mainly used in light control applications (example, electronic ballast control).The STM8S DALI slave library was tested according to the DALI specification.

The DALI slave library comes with a simple application example (DALI slave device). The example was designed (and tested) for use with the following evaluation boards:

STM8S-DISCOVERY (see UM0817, STM8S-DISCOVERY)

DALI transceiver board (see UM1032: STEVAL-ILMOO1V1 hardware module for the STM8S-DISCOVERY interface for DALI communication).

The application example controls the light of the on-board LED diode. Light intensity is

controlled by the PWM method using a built-in timer. The external DALI master device must control this application example (which is the DALI slave device). The DALI master devices were tested using the ST7DALI evaluation kit (master device board and PC software) and commercial DALI controller from Osram.

The user can use the provided example as a starting point for writing an application using the STM8S DALI slave library.

Useful information and links about DALI interface can be found on https://www.wendangku.net/doc/3d11236655.html,.

https://www.wendangku.net/doc/3d11236655.html,

Contents AN3298

Contents

1DALI information . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6

1.1DALI standard overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6

1.1.1DALI purpose and properties . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6

1.1.2DALI physical layer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7

1.1.3DALI stack layer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9

1.2STM8S DALI slave library overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9

2Structure of final user application . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10

2.1User application . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10

2.2DALI stack layer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11

2.3I/O pin driver layer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12

3Function description . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14

3.1I/O pin driver layer functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14

3.1.1stm8_interrupt_vector.c . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14

3.1.2stm8_it.c,

stm8_it.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14

3.1.3DALIslave.c,

DALIslave.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15

3.1.4stm8s.h,

stm8s_conf.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16

3.2DALI stack layer functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17

3.2.1dali.c,

dali.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17

3.2.2dali_cmd.c,

dali_cmd.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18

3.2.3dali_pub.c,

dali_pub.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19

3.2.4dali_reg.c,

dali_reg.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20

3.2.5eeprom.c,

eeprom.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20

3.2.6lite_timer_8bit.c,

lite_timer_8bit.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21

3.2.7dali_config.c,

dali_config.h . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 2/27Doc ID 18098 Rev 1

AN3298Contents

4Resources and examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24

4.1Typical user application flowchart . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24

4.2DALI stack footprint . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 5Revision history . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26

Doc ID 18098 Rev 13/27

List of tables AN3298 List of tables

Table 1.Document revision history . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26 4/27Doc ID 18098 Rev 1

AN3298List of figures List of figures

Figure 1.DALI wiring example. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 Figure 2.Example of DALI device connections. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 Figure 3.Voltage and currents on the DALI bus . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 Figure 4.Structure of user application. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 Figure 5.Structure of DALI stack layer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 Figure 6.Structure of I/O pin driver layer. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 Figure 7.Hardware for testing DALI: STM8S Discovery kit with plugged-in DALI

transceiver board . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 Figure 8.Flowchart of the user application which uses the DALI slave library . . . . . . . . . . . . . . . . . 24

Doc ID 18098 Rev 15/27

DALI information AN3298

6/27Doc ID 18098 Rev 1

1 DAL I information

1.1

DALI standard overview

DALI is an international standard (IEC 62386) lighting control system that provides a single

interface for electronic control gears (light sources) and devices (lighting controllers).The DALI standard enables dimmable ballasts, transformers, relay modules, emergency fittings and controllers from different manufacturers to be mixed and matched into a single control system. A DALI system provides designers, installers, building owners, facility managers and end-users a powerful and flexible digital lighting system with security of supply from many sources.

The DALI standard is overseen by the “AG-DALI” activity group which comprises engineers, manufacturers, and institutions working in the field of digital lamp/ lighting control. More information about the DALI standard can be found in the following documents:

●IEC 62386

NEMA STANDARD 243-2004

The following sections provide an overview of the DALI standard. They describe the basic principles of the DALI interface.

Note:

To better understand the STM8S DALI slave library, a knowledge of the DALI interface specification is essential. This application note does not provide a description of this specification.

1.1.1 DALI purpose and properties

The DALI protocol was designed to control modern light sources using a computer. Functions include:

●Dimming ●On/off switching

●Grouping lights to a common control ●

Scene storage and selection

The DALI design properties include:

●Simple wiring using standard electrical installation cables ●No special wiring topology (as with power electrical cables)●Simple installation giving cable polarity independence ●Automated light source addressing

●Use of low cost microcontrollers on the light source side to minimize cost of light source ●

Use of a simple protocol to control light dimming and switching.

AN3298

DALI information

Doc ID 18098 Rev 17/27

Figure 1.

DALI wiring example

1.1.2 DAL I physical layer

The DALI interface consists of a physical layer from two wires. This is a simple installation

for which the polarity is independent.

The protocol used on these cables is a standard serial protocol. There is 1 start bit, 8 data bits, and 2 stop bits. The communication speed is fixed at 1200 Bd 10 %. Manchester coding is used for better resynchronisation: rising edge is logical 1 and falling edge is logical 0. Bytes are grouped into frames. One frame usually consists of 1 or 2 bytes which is either data only (answer from the device) or address + data (command to device).

Voltage levels present on DALI communication wires are higher than the transistor-transistor logic (TTL) levels that are usually used. This is due to better noise immunity because of higher interference present on nearby power installation cables. Voltage levels are defined as follows:

Low level state –-4.5 to 4.5 V (transmitter)–

-6.5 to 6.5 V (receiver)

High level state

–11.5 to 20.5 V (transmitter)–9.5 ... 22.5 V (receiver)

Low level state is dominant on the DALI bus. The device can force this level to the DALI bus by shortening the DALI wires. Consequently, current levels are defined for devices used on the DALI bus. There are two device types:1.

DALI master or DALI slave communication devices. In these devices the current is sunk from the DALI bus. They consume a maximum of 2 mA to receive high level state and sink a minimum of 250 mA to transmit low level state.

2.

DALI power supply. These devices power the DALI bus and are the source current for it. Supply is limited to a maximum of 250 mA

The maximum length of the DALI bus depends on the cables used for the DALI communication wires. The length is linearly dependent on the cross section of the

conductor. For example, a 1.5 mm 2 cable (which is typically used in light installation cables) allows a maximum bus length of up to 300 m.

DALI information AN3298 Collisions between several DALI masters on the DALI bus are solved on the basis of timing

priorities. When a collision is detected (the DALI master should check the sent data),

communication is muted for a period of time according to the assigned master priority. There

are five defined priority levels: 12 ms, 13 ms, 14 ms, 15 ms, and 16 ms. The longest waiting

time has less priority.

8/27Doc ID 18098 Rev 1

AN3298DALI information

Doc ID 18098 Rev 19/27

1.1.3 DAL I stack layer

The DALI stack is the higher DALI layer which implements DALI commands, DALI

structures, timing management, and error management according to the DALI specification.The most important feature of the DALI stack layer is the DALI commands. These commands are used for:

●Direct light control such as dimming, on/off switching, and scene selection.●

Device configuration to set DALI variables, read device properties, address assignments, and query device status.

The DALI stack layer is fully implemented in microcontroller software.

1.2 STM8S DALI slave library overview

The STM8S DALI slave library contains instructions for implementing software of the DALI protocol into STM8S microcontrollers.The DALI slave library consists of two layers:

●Upper layer (DALI stack layer)●

Hardware layer (I/O pin driver layer)

The upper layer of the DALI slave library (also known as the DALI stack layer), consists of routines for processing the required DALI commands and other necessary control functions (including timing control, error management, memory management, and light control).The hardware layer (also known as the direct I/O pin driver layer), contains the physical layer implementation. This is necessary because STM8S microcontrollers do not support DALI communication peripherals.

The DALI slave library is written in C-language and is designed (and tested) for the Cosmic compiler . In future, the IAR and Raisonance compilers will also be used. The DALI slave library was developed using ST Visual Develop (STVD) IDE. In future, the IAR Embedded Workbench IDE will be used. All of these tools (compilers and IDE) are free for download from https://www.wendangku.net/doc/3d11236655.html,/mcu or from compiler vendor websites.

10/27

Doc ID 18098 Rev 1

2 Structure of final user application

The final user application uses the DALI slave library and so, consists of the following three layers:

●Main user application ●DALI stack layer ●

I/O pin driver layer

2.1 User application

The structure of the user application is shown in Figure 4. It is comprised completely of

STVD project files. The application code is in one source file, "main.c", in which the whole user ballast control is implemented. This code calls the DALI slave library functions.The user application example included in the DALI slave library package is designed to work with the “STM8S discovery kit ” and “DALI transceiver board”. The STM8S discovery kit is a small printed circuit board (PCB) with an integrated STM8S105C6T6 device which

demonstrates STM8S capabilities. The DALI transceiver board is connected to the STM8S discovery kit as a physical layer extension. It provides voltage level conversion and optical isolation between the DALI bus and the STM8S discovery kit (according to the DALI specification requirements).

Figure 4.

Structure of user application

The main task of the user application is to initialize the DALI stack and to implement the light intensity control function (callback function). This function is ballast dependent. The user application also periodically controls some event flags. If the DALI slave library sets an event flag and it indicates a pending event, the user application must call the appropriate service routines (from the DALI slave library) to execute the necessary commands.

Doc ID 18098 Rev 111/27

The user application example uses timer 3 to control the light intensity of the LED diode present on the STM8S discovery kit. Timer 3 generates the pulse-width modulation (PWM) for the LED diode (using the callback function). The main program loop checks event flags, executes actions for active flags, and provides power management (Low power state if the DALI bus is quiet) and error management (reports hardware errors). For all these purposes the user application calls functions from the DALI slave library.

2.2 DAL I stack layer

The DALI stack layer is a set of functions which implement the main DALI logical protocol

functionality according to the DALI specification. It is divided into a number of source files where each file implements a given required functionality including DALI commands,

configuration, public low level functions, DALI registers, EEPROM management, and timing.Figure 5 displays the structure of the DALI stack layer.

Figure 5.

Structure of DALI stack layer

The DALI stack is hardware independent. It calls the I/O pin driver for low level hardware dependent functions. After initialization of the DALI stack layer (after calling initialization functions), most of the tasks run automatically. T asks include receiving commands and running timer tasks (light dimming, timeouts).

12/27Doc ID 18098 Rev 1

2.3 I/O pin driver layer

The I/O pin driver layer of the DALI slave library implements physical and link layers of the DALI interface. The DALI protocol requires two pins for communication. The I/O pin driver layer implements reception and transmission through direct control of two arbitrary GPIO pins. It also controls the required DALI speed and correct bit timing, solves DALI bus error recovery, and collects received bits into DALI frames (using address and command bytes).Figure 6 displays the structure of the DALI I/O pin driver layer.

Figure 6.

Structure of I/O pin driver layer

The I/O pin driver layer occupies one timer (timer 4), one GPIO interrupt, one timer interrupt, and direct control of two GPIO pins (assignment of which is software selectable). Timing events are invoked inside the timer interrupt service routine. Such events control the I/O pin driver layer behavior by calling callback functions from the DALI stack layer at given 1 ms intervals (timer ticks).

Doc ID 18098 Rev 113/27

Figure 7.

Hardware for testing DALI: STM8S Discovery kit with plugged-in DALI transceiver board

DALI transceiver board

STM8S Discovery board

DALI

L D 1 L E D c o n t r o l l e d l i g h t

USB

Function description AN3298

14/27Doc ID 18098 Rev 1

3 Function description

This section describes the most important STM8S DALI slave library functions for the user.

3.1 I/O pin driver layer functions

The I/O pin driver layer implements hardware dependent functions (designed for use with

STM8 devices and the DALI transceiver board).

3.1.1 stm8_interrupt_vector.c

This file contains the interrupt vector table. The I/O pin driver layer occupies six interrupt vectors:

EXTI_PORTx_IRQHandler (five vectors)

The EXTI_PORTx_IRQHandler set of five vectors is for all GPIO pins (where x = A, B, C, D, and E). They:

●Detect DALI RX line changes

Allow the user to select any pin as a DALI RX line (because all GPIO vectors are occupied).

TIM4_UPD_OVF_IRQHandler

This vector is for timer 4 overflow/update. It:

●Controls the reception and transmission timing ●

Produces precise timer ticks for the DALI stack layer

3.1.2 stm8_it.c,

stm8_it.h

These files contain two interrupt service routines (ISR):

@interrupt void EXTI_PORTx_IRQHandler (void)

This ISR:

●Calls receiving routines if there is a voltage level change on the DALI RX pin

Detects the start of the DALI packet. This ISR is inactive during DALI packet reception. It is activated after DALI packet reception.

AN3298Function description

Doc ID 18098 Rev 115/27

@interrupt void TIM4_UPD_OVF_IRQHandler (void)

This ISR:

●Generates timer ticks for the DALI bit receive and transmit functions

●Calls, in given intervals, the transmit/receive function (sampling is eight times per DALI bit).

●Generates 1 ms timer ticks for the upper DALI layer timing by calling callback functions from the DALI stack layer.

Checks for DALI interface failure such as loss of voltage on the DALI bus for more than 500 ms (disconnection from DALI bus).

3.1.3 DAL I slave.c,

DALIslave.h

These file contains the reception and transmission routines for building the DALI packet from received bits according to the DALI specification. It also contains the initialization functions of the DALI I/O pin driver layer.

The functions of these files are given below in bold.

void init_DALI(port_out,pin_out, invert_out, port_in, pin_in, invert_in,

DataReceivedFunction, ErrorFunction,

RTC_1ms_Function)

This set of functions:

●Initializes the DALI I/O pin driver layer

Defines the DALI RX and DALI TX pins and their inversion. This depends on the

physical connection to the DALI bus (i.e. the converter between the DALI bus and the I/O pins).

Defines the callback functions:–if the complete DALI packet is received (address, command/data)–if an error occurs on the DALI bus (loss of idle voltage)

if 1 ms callback timer ticks are generated for the DALI stack layer

After this function is called, the I/O pin driver is able to receive DALI packets and can call upper layer callbacks. This function should be called as the last initialization function (after DALI stack initialization).

bool get_DALIIN(), bool get_DALIOUT(),

void set_DALIOUT(pin_value)

This set of functions:

●Obtains/sets the logical level from/to the DALI pin (DALI Rx and DALI Tx)●

Accepts the hardware implementation of the driver (its eventual inversion)

Function description AN3298

void receive_data()

This function is called from the interrupt routine when the first start bit of DALI packet

occurs. It:

●Starts the receiving process

void send_data(byteToSend)

This function:

●Starts the transmission process

void receive_tick()

This function is called from timer 4 interrupt service routine when receiving has already

started. It:

●Performs bit receiving from the DALI RX pin for building the DALI packet

●Checks the packet errors on the DALI bus

void send_tick(void)

This function is called from timer 4 interrupt service routine when transmitting has already

started. It:

●performs transmitting of DALI packet to DALI bus (bit coding to physical layer)

void check_interface_failure(void)

This function:

●Checks the DALI bus idle voltage presence (500 ms disconnection from the DALI bus)

●Calls error callback function if an error occurs

u8 get_timer_count(void)

This function:

●Returns the current timer 4 content

●Is used for general purpose use, for example, random number generation

u8 get_flag(void)

This function:

●Returns the current DALI I/O driver state (receiving, transmitting)

3.1.4 stm8s.h,

stm8s_conf.h

These files, originally present in STM8S firmware library (see https://www.wendangku.net/doc/3d11236655.html,/mcu), implement

the following STM8S microcontroller family hardware definitions:

●Peripheral register names

●Memory and register address mapping

●Definition of bit masks and macros

●Definition of types (peripheral structures) and fixed constants

16/27Doc ID 18098 Rev 1

AN3298Function description

Doc ID 18098 Rev 117/27

3.2 DALI stack layer functions

The DALI stack layer implements all DALI commands processed on the logical level according to the DALI specification.

3.2.1 dali.c,

dali.h

These main files contain the most commonly used functions that are called from the user application. They contain initialization of the entire DALI slave library, DALI slave library event flag signaling, command execution calls, and reporting of user hardware error.The functions inside these files are given below in bold.

void DALI_Init(LightControlFunction)

This function:

●Initializes the entire DALI slave library (both I/O pin driver layer and DALI stack layer and is called from the user application as the main initialization function.●Initializes all necessary modules of the DALI slave library

Starts execution of receiving commands from the DALI bus, timing management, callback calls, and setting of event flags.

u8 DALI_CheckAndExecuteReceivedCommand(void)

This function should be cyclically called from the main user application in the main program loop. It:

●Checks if there is a pending received DALI packet. If so, the given DALI command from the packet is executed.●

Returns the execution status –0 = no pending command

– 1 = pending DALI command executed –

2 = DALI bus error present and processed

u8 DALI_CheckAndExecuteTimer(void)

This function should be cyclically called from the main user application in the main program loop at least every 1 ms. It:

●Checks if there is a pending timer flag. If so, the given timer callbacks (fading functions, timeouts, ...) are executed.

Returns the number of pending remaining 1 ms timer cycles for a given timer task (example, number of timer cycles to finish light dimming cycle).

void DALI_halt(void)

This function contains the entry to the microcontroller Low power state (Halt mode without timer interrupt). The user must check before calling this function that there are no pending timer cycles and DALI packets.

Function description AN3298

void DALI_Set_Lamp_Failure(failure)

This function:

●Sets or resets the failure state of the lighting element (for example, a damaged bulb).

u8 Get_DALI_Random(void)

This function:

●Returns a random number

●Is used for general purpose use

3.2.2 dali_cmd.c,

dali_cmd.h

These files contain all DALI commands according to the DALI specification. In addition, they

contain auxiliary functions for command processing such as checking command parameters

and correct timing.

Many functions execute a given DALI command and other functions execute auxiliary

commands. A given function is called automatically when the user calls the

DALI_CheckAndExecuteReceivedCommand(void) function.

The most important functions of these files are given below in bold.For information about

other functions, the user can refer inside these source files and to the DALI specification.

void DALIC_Init(void)

This function:

●Initializes the entire DALI command modules

u8 DALIC_isTalkingToMe(void)

This function:

●Detects if the received DALI packet is addressed to the device

void DALIC_ProcessCommand(void)

This function:

●Selects the correct command execution according to received data

void DALIC_Direct_Arc(val),

void DALIC_Direct_Arc_NoFade(val)

This function is called from many DALI commands as a request for light intensity change. It:

●Executes the light intensity control

18/27Doc ID 18098 Rev 1

AN3298Function description

Doc ID 18098 Rev 119/27

3.2.3 dali_pub.c,

dali_pub.h

These files contain the lower level DALI stack layer functions. The user can modify some functions if required. All functions of these files are called from other DALI stack modules (mainly from the "dali_cmd.c") as requests to execute lower level commands.The most important functions of these files are given below in bold.

void DALIP_Init(LightControlFunction)

This function:

●Initializes the public module

Contains as an input parameter a user callback function for light control:–it is called if there is a need to change the light level

–the user implements it (implementation is user hardware dependent)

it has only one input parameter (unsigned int) which is the requested light level (see header file "dali_pub.h" for this function type definition).

void DALIP_Direct_Arc(u8 val)

This function is called from the "dali_cmd.c". It:

Executes the light intensity control using a logarithmic curve

u8 DALIP_Getxxx(void), void DALIP_Setxxx(u8 val)

This set of functions:

Reads or sets a given "xxx" DALI parameter (usually a DALI register or flag in EEPROM).

void DALIP_Off(void),

void DALIP_On_And_Step_Up(void), void DALIP_Step_Down_And_Off(void), void DALIP_Recall_Max_Level(void), void DALIP_Recall_Min_Level(void), void DALIP_Up(void), void DALIP_Down(void), void DALIP_Step_Up(void), void DALIP_Step_Down(void)

This set of functions

Implements the DALI commands for controlling light level

Function description AN3298 3.2.4 dali_reg.c,

dali_reg.h

These files contain the DALI register management functions. The DALI registers can be

stored in RAM, EEPROM, or ROM memory (see the DALI specification definitions). The

functions of these files implement automatic memory selection depending on the register

index and register read and write routines.

The most important functions of these files are given below in bold.

void DALIR_Init(void)

This function:

●Initializes the DALI register module

●Clears all RAM registers

void DALIR_ResetRegs(void)

This function:

●Sets all registers to the default state (according to the DALI specification)

u8 DALIR_ReadReg(idx),

void DALIR_WriteReg(idx, newval),

u8 DALIR_ReadStatusBit(bit),

void DALIR_WriteStatusBit(bit, val),

u8 DALIR_ReadEEPROMReg(idx),

void DALIR_WriteEEPROMReg(idx, val)

This set of functions:

●Is used for register reading and writing

void DALIR_DeleteShort(void)

This function:

●Clears the DALI short address (unassigned address state)

3.2.5 eeprom.c,

eeprom.h

These files contain routines for the EEPROM memory read/write operations. They contain

read and write functions for reading and writing rewritable nonvolatile DALI variables.

The most important functions of these files are given below in bold.

void EEPROM_Init(void)

This function:

●Initializes the EEPROM module

●Initializes EEPROM data (registers) to their default values

20/27Doc ID 18098 Rev 1

swot分析案例-2012雷州市场达利食品

swot分析案例-2012雷州市场达利食品雷州市场分析与总结一(雷州市场SWOT分析 A.优势:产品铺市率高,盒装蛋糕类产品作为核心产品,确立了市场领导地位, 在盒装产品带动下,达利园品牌旗下产品12枚瑞士卷、360克软面包、500克注心派等品项也获得了最广泛的铺市率和优异的市场表现。另外,经销商口碑、配送、售后服务、品牌专注度都为品牌优势塑造提供有利条件。B.劣势:品项发展不均衡,盒装产品占比过大,好吃点饼干系列与可比克产品系列处于市场培养阶段,多条码发展处于初始阶段。 C.机会:市场发展环境得天独厚,竞品发展明显滞后于我司品牌,且难以短时间形成市场影响力。利用本品规模优势、先导优势,可以不断扩大本品在雷州市场的竞争力,不断排挤同类产品、低价竞品,实现市场销量最大化。 D.威胁:由于市场销量在盒装部分占比过高,因此主要威胁来自于天天旺、惠优、珠穆朗玛等杂牌产品的低价跟随和市场销量残食,综观各乡镇市场,这些产品有不断壮大之势,保持品牌力与利润空间,防止消费者注意力转移是主要应对手段。 二(综合以上分析,为了打造雷州市场的可持续增长模式,制定相应的市场销售策略如下: 产品策略:以盒装产品、大包装蛋糕类产品为主,多推类似性质产品,依靠明星产品带动发展滞后但具有发展潜力的饼干类、薯片类,具体做法可以如下:1(在春节期间加大年货产品操作,推广一些公司年货新品 2(多进行捆绑类促销,尤其适合薯片。事实证明,老人与小孩也是薯片的潜在消费者,可以培养为忠实的消费群体,对于雷州乡镇出现的外出人口较多、留守妇孺普遍的情形这一做法应比较适应。 3(同比其它县级市场,散装饼干网点更多更广,是潜在的饼干市场。我司散饼类虽价格领先,但仍具有培养潜力,饼干市场品牌性需求也是不断成长的。

智能中央控制系统解决方案

“智能中央控制系统”解决方案 多媒体会议控制系统 随着社会的不断发展,信息交流和沟通也就变得越来越频繁,越来越重要。各种视听设备、投影设备,会议系统等开始进入各行各业。现在的会议室、电化教学室等,已经不是以前的一张讲台一张椅子一个话筒了,取而代之的是各种先进的多媒体会议及教学设备,如:投影机、影碟机、录像机、视频展示台、多媒体电脑、电动屏幕。一些大型会议室还配备了同声传译系统、电子表决系统、大屏幕投影、多画面切换系统等。多种设备的使用必定带来烦杂的设备操作。如:要打开多种设备电源,要关闭灯光,要频频切换各种音视频信号,要不断切换投影画面.....等等。控制系统能同时控制会议室、教室的各种资源,集中管理这些设备。

多媒体会议系统的组成 网络子系统、投影显示系统、音响系统、监控系统、会议发言系统、房间环境系统和中央控制系统等组成。 系统功能 1)以中央控制主机为中心,无线触摸屏为控制终端; 2)通过主机上的RS232口控制投影机及投影机吊架,实现投影机升降、开关、信号选择等功能; 3)通过主机上的RS232口连接到摄像机的RS232控制口,通过无线触摸屏控制摄像机转动和图象放大缩小; 4)通过主机上的A-NET口连接电源控制器,可以控制窗帘、灯光、投影幕布和设备电源,如筒灯的开/关;射灯的开/关;光管的开/关;或全开/全关等; 5)通过主机上的RS232口连接调音模块,使整个扩音设备可以任意调节音量的大小; 6)通过控制A/V矩阵,可以实现将所有的音视频信号切换到会议室的所有音视频输出设备上;通过控制RGB或VGA将多种信号切换到投影机。 7)通过主机上的RS232口和会议系统RS232接口连接实现摄像机联动控制功能。 8)通过红外口可以控制液晶电视、DVD等设备 9)因为所有的设备都受到控制,所以能够实现客户所要求的对各个设备都进行控制;对灯光、影音系统进行预设及调整;根据需求可自定设计场景模式,一键式完成对整个房间环境、气氛的改变,以自动适应当前的需要,如:会议前模式、会议模式、会议结束模式等。 会议前模式:当选择会议前模式时,灯光、音响等设备打开,窗帘慢慢关闭; 会议模式:当选择会议模式时,投影打开,降到适合的位置,投影幕打开,灯光关闭; 会议结束模式:当选择会议结束模式时,关闭所有设备,窗帘打开,关闭系统电源。 用户只需要坐在触摸屏前,便可以直观的操作整个会议系统。 中控系统连接图:

达利园是哪个国家品牌

折叠产品与服务 公司目前拥有各类先进生产设备和生产线130多条。其中派生产线30条、德国威化生产线6条、薯片生产线22条、英贝克1000型饼干生产线23条、国际化标准PET饮料

生产线13条、国际化标准三片罐饮料生产线10条、国际化标准瓶装饮用水生产线9条、国际化标准冷罐装无菌生产线3条,形成了派类食品、薯片、饼干、饮料等四大产品系列共600多个品种。2007年下半年,达利集团推出了"和其正"凉茶、"达利园"优先乳、茶饮料、果汁饮料、植物蛋白饮料、八宝粥等六大品类、十一种产品、六十二种包装规格,品类之多、种类之广,在国内饮料界绝无仅有。 折叠市场 目前,达利集团已经形成了沿海沿江二线布局,以中心城市辐射周边区域,产品遍布中国每个角落,终端渠道占有率超过85%。在公司强大生产力支持下,全国各地销售网点均呈现旺盛的增长势头,达利产品畅销全国三十一个省、市、自治区,并出口韩国、日本、菲律宾、马来西亚等国家,形成了稳定的营销网络,深受国内外客户喜爱。 折叠科研团队 坐落在甘肃武威城东工业园区的甘肃达利食品有限公司,总投资3亿元,占地320亩,拥有六条现代化生产工艺的马铃薯全粉生产线,项目建成后马铃薯全粉生产能力将达到2.1万吨,年处理马铃薯原料可达到15万吨,将成为亚洲最大的马铃薯全粉生产基地。此项目建设符合国家产业政策及农业产业化发展方向,既推动地方经济的发展,也帮助农民增加了收入。2007年6月,许世辉先生与武威市凉州区政府再次签订协议,建设两条年生产能力达20万吨、具有国际先进水平的PET全自动饮料生产线,生产达利集团旗下的系列饮料产品。 达利集团历来重视科研创新工作,拥有多名技术专家,并与国内外众多食品、饮料研发机构有着广泛深入的合作,形成强大的技术实力,奠定了雄厚的行业基础。公司成立了技术开发中心,每年投入年销售额的3.5%用于新产品的开发以及生产设备的改造及创新,推出至少不低于20个品种的新产品,每一项都取得的巨大成功,成为同行业中引领新潮流的领航企业。 一个成功的企业必然拥有着一支卓越的团队,达利集团培育了一支优秀的营销队伍。3500多家经销商遍布全国,批发网点超过80000个,终端渠道占有率超过85%,他们将达利健康美味的产品送到千家万户。在这个营销网络中,达利一直实施以点带面,从而取得全国市场的"节节开花"。并且在福建、四川、湖北、山东、吉林、甘肃、马鞍山、山西、云南等省建立了十六大生产基地,在强大的营销网络和高效率物流系统的支撑下,达利旗下的产品从生产规模、物流配送、市场营销到终端销售都拥有了高效稳定的保障。

数据中心机房动力设备与环境集中监控系统解决方案

数据中心机房动力设备及环境集中监控系统解决方案

第一章项目概述 一、工程概述 本次数据中心机房改造项目主要建设内容有:机房装修、机房供配电系统(包括机房内的主设备用电、辅助设备用电)、机房UPS电源及蓄电池系统、机房综合布线及机柜系统、机房监控系统(视频监控、场地环境监控系统和机房消防报警及灭火系统等几部分)。 二、设计依据 本设计依据: 1、以下规范和标准。 GB /T2887-2000《计算站场地技术要求》 GB 9361-88《计算站场地安全要求》 GB 50174-93《电子计算机机房设计规范》 GB6650-86《计算机机房活动地板技术条件》 ST/T30003-93《电子计算机机房工程施工及验收规范》 GB 1838-93《室内装饰工程质量规定》 ITU.TS.K20:1990《电信交换设备耐过电压和过电流能力》 ITU.TS.K21:1998《用户终端耐过电压和过电流能力》 GB 50150-91《电气装置安装工程电气设备交接试验标准》 GB 50236-98《现场设备、工业管道焊接工程施工及验收规范》 JGJ 73-91《建筑装饰工程施工及验收规范》 GB 50243-97《通风与空调工程施工及验收规范》

GB 50054-95《低压配电设计规范》 三、设计原则 根据数据中心的现状,此次所做的设计必须满足当前单位的各项业务应用需求,尤其是作为行业专业应用,同时又面向未来快速增长的发展需求,因此应是高质量的、灵活的、开放的。设计时考虑避免下列外界因素:电磁场、易燃物、易燃性气体、磁场、爆炸物品、电力杂波、潮气、灰尘等影响。 ?实用性和先进性 采用先进成熟的技术和设备,尽可能采用先进的技术、设备和材料,以适应高速的数据与需要,使整个系统在一段时期内保证技术的先进性,并具有良好的发展潜力,以适应未来业务的发展和技术升级的需要。 ?安全可靠性 为保证各项业务应用,网络必须具有高可靠性,决不能出现单点故障。要对机房布局、结构设计、设备选型、日常维护等各个方面进行高可靠性的设计和建设。在关键设备采用硬件备份、冗余等可靠性技术的基础上,采用相关的软件技术提供较强的管理机制控制手段和事故监控与安全保密等技术措施提高电脑机房的安全可靠性。 ?灵活性与可扩展性 数据中心机房必须具有良好的灵活性与可扩展性,能够根据机房业务不断深入发展的需要,扩大设备容量和提高用户数量和质量的功能。应具备支持多种网络传输,多种物理接口的能力,提供技术升级设备更新的灵活性。 ?标准化 数据中心机房系统整体设计,要基于国际标准和国家颁布的有关标准,包括各种建筑、机房设计标准,电力电气保障标准以及计算机局域网、广域网标准,坚持统一

福建百强企业名单)

一省属(9家) 1 福建省能源集团有限责任公司 福建省煤电股份公司 福建省永安煤业有限责任公司 福建省龙岩发电有限责任公司 福建水泥股份有限公司 2 福建省轻纺(控股)有限责任公司福建省南纸股份有限公司 福建省青山纸业股份有限公司 福建纺织化纤集团有限公司 3 福建省机电(控股)有限责任公司福建海峡科化股份有限公司 邵武化肥厂 4 福建石油化工集团有限责任公司福建省东南电化股份有限公司

福建湄洲湾氯碱工业有限公司 5 福建省汽车工业集团有限公司 东南(福建)汽车工业有限公司 福建新龙马汽车股份有限公司 6 福建省电子信息集团 闽东电机(集团)股份有限公司 福建星网锐捷通讯股份有限公司 日立数字映像(中国)有限公司 7 福建省冶金(控股)有限责任公司福建省三钢(集团)有限公司 福建三钢(集团)三明化工有限公司福建三安钢铁有限公司 南平铝业有限公司 8 福建省船舶工业集团公司 厦门船舶重工股份有限公司

马尾造船股份有限公司 东南造船厂 9 中国(福建)对外贸易中心集团有限责任公司福建南纺股份有限公司 二各设区市合计(168家) 福州(44家) 1 福建捷联电子有限公司 2 福耀玻璃工业集团股份有限公司 3 福建吴航不锈钢制品有限公司 4 福建鑫海冶金有限公司 5 福建省金纶高纤股份有限公司 6 福州福大自动化科技有限公司 7 福建省长乐市长源纺织有限公司 8 中国国际钢铁制品有限公司 9 国电福州发电有限公司

10 中铝瑞闽铝板带有限公司 11 福建华电可门发电有限公司 12 祥兴(福建)箱包集团有限公司 13 福建省长乐金源纺织有限公司 14 长乐力恒锦纶科技有限公司 15 福建亿鑫钢铁有限公司 16 福建康宏股份有限公司 17 福州大通机电有限公司 18 福建世纪印福粮油工业有限公司 19 福建省福抗药业股份有限公司 20 福建亚通新材料科技股份有限公司 21 明达工业(福建)有限公司 22 南方铝业(中国)有限公司 23 福建省万达汽车玻璃工业有限公司 24 福建中日达金属有限公司

休闲零食分析

休闲零食分析 在休闲零食“第四餐化”趋势下,休闲食品这一细分板块成为2017年食品饮料板块中增长最为快速的细分板块。我国目前休闲零食销量已破万亿,并将保持20%以上的复合增速。 零食行业分析表示,随着我国居民消费水平的提高,我国休闲食品市场逐渐向年轻化高端 化、健康化升级。休闲食品"第四餐化"的趋势也说明,消费升级下场景消费的增加给食品饮料 行业带来的变化。我们认为休闲食品在未来几年仍会保持高速增长的态势,特别看好结构性机会,坚果、鹵制品等休闲零食发展刚刚开始,建议重点关注。国内休闲食品以烘焙食品、糖果、饼干、膨心食品、坚果炒货和其他为主。其中,烘焰食品市场分额占比最大,达到382%,其次分别是糖果、饼千、膨化食品、坚果和其他,分别占比24.3%、14.5%、6.8%、27%和13.5%。糖果、饼干和烘焙食品的规模已经超过千亿,坚果和膨化食品的市场规模还在百亿左右,差距较大通过对零食行业市场现状分析,传统品类糖果、糕点类、饼干集中度较高,其他小品类尤其是具有农产品属性的品类集中度低。薯类膨化食品CR5超过70%,糕点类超过40%,讲干超过30%,传统品类的集中度相对较高,但是其他小品类尤其是农产品属性较重的品类,集中度较低,比如线下坚果品类CR5仅5%左右,果脯蜜饯集中度仅2%左右。 瓜子之外传统坚果炒货品类并未形成大单品。从已有数据宋看,200B年除了瓜子之外,南瓜 子实现收入约7200万元,豆类实现收入约B700万元,南瓜子和类合计占公司入占比约B%左右,收入占比不高,并目近几年南瓜子、豆类两个品类发展并未实现实质性突破,20082017年收入规模均未超过1亿元。 通过对零食行业市场现状分析,我国烘焰食品市场竞争较为充分,且集中度较低。 数据显示,2017年我国烘焙市场前五品牌集中度为21.7%,其中,前三品牌为达利食品、桃李面包和嘉顿面包,其市场份额分比为7%、6.6%和3.4%而其他中小型面包品牌数量较大,市场份额占比高达77.4%

工厂制冷系统集中控制方案

工厂制冷系统集中控制方案 一、项目背景 现有生产车间一号生产线基于AHU风机盘管基础上的新风系统一套,功率小于5KW。 现有生产车间二号生产线基于AHU风机盘管基础上的新风系统一套,功率小于5KW。 现有基于工艺冷冻水制冷系统基础上的水蓄冷系统一套,功率55KW。 现有工艺冷冻水制冷机组三套,每套系统设备功率如下统计表所示: 工艺冷冻水制冷系统设备功率统计表 系统设备名称额定功率(KW) 固定功率(KW) 可变功率(KW) 备注 A 螺杆式制冷压缩机组A 156.0 78.0 78.0 实际功率随负荷变化而变化冷冻水泵18.5 18.5 功率与冷负荷变化无关 冷却水泵22.0 22.0 冷却水塔风机 5.5 5.5 小计202.0 124.0 78.0 B 螺杆式制冷压缩机组B 218.0 109.0 109.0 实际功率随负荷变化而变化冷冻水泵22.0 22.0 功率与冷负荷变化无关 冷却水泵30.0 30.0 冷却水塔风机7.5 7.5 小计277.5 168.5 109.0 C 螺杆式制冷压缩机组C 300.0 150.0 150.0 实际功率随负荷变化而变化冷冻水泵22.0 22.0 功率与冷负荷变化无关 冷却水泵55.0 55.0 冷却水塔风机11.0 11.0 小计388.0 238.0 150.0 合计867.5 530.5 337.0 二、基于AHU风机盘管基础上的新风系统简介 在AHU风机盘管系统的基础上做出部分调整,把室外的冷空气(新风)作为冷源,并联接入室内原有的风机盘管入风口,使其冬季或过渡季将引入室外空气为冷源,对AHU风机供冷区域进行供冷,达到节约能源的目的。此系统的优点是:节省运行费用,充分利用天然冷源,减少制冷用电及其附属设备的用电。 三、基于工艺冷冻水制冷系统基础上的水蓄冷系统简介 水蓄冷系统是用水为介质,将夜间电网多余的谷段电力(低电价时)与水的显热相结合来蓄冷,以低温冷冻水形式储存冷量,即夜间制出5℃~7℃左右的低湿水,并在用电高峰时段(高电价时)使用储存的低温冷冻水来作为冷源,通过末端系统中的风机盘管, 生产工艺设备或空调箱等设备,满足建筑物舒适空调温度或生产工艺要求。在电网高峰用电(高价电)时间内,制冷机组停机或者满足部分用冷负荷,其余部分用蓄存的冷量来满足,从而达到“削峰填谷”,均衡用电及降低电力设备容量的目的。

吉林达利食品实习报告

本科生毕业设计 实习报告 学生姓名班级 451004 学号 45100424 学院生物与农业工程学院 专业食品科学与工程专业 指导教师职称副教授

吉林达利食品有限公司实习报告 一、实习目的 通过参观学习,了解食品现场生产工艺流程,将课堂所学理论知识与实际操作相结合,进一步了解食品专业在实际生产中的应用。参观学习是学生大学学习很重要的实践环节,是每一个大学生的必修课,不仅能让我们学到很多在课堂上根本学不到的知识,还能使我们开阔视野,增长见识,为我们以后更好的把所学的知识运用到实际工作中打下坚实的基础。通过对食品专业的实习使我们深入的接触专业知识,并通过撰写实习报告,使我们学会综合应用所学知识,提高分析和解决问题的能力。 二、实习时间 2014年4月 三、实习地点 吉林达利食品有限公司 四、指导老师 董周永 五、实习内容 这次我参观了吉林达利食品有限公司薯片厂,在该厂工作人员的带领下,我参观了生车车间。通过参观我了解了薯片生产工艺加工原理。 (一)实习单位的基本情况 福建达利食品有限公司创办于1989年9月,始终秉承以科技为先导、以先进的现代化管理为依托、以“顾客满意第一”为宗旨的经营方针,发展成为一家致力于研发和制造健康美味食品的大型集团化民营企业。达利集团下辖福建达利食品集团有限公司、湖北达利食品有限公司、吉林达利食品有限公司等等,年产值超百亿,是全国最大的全独资民族品牌食品生产龙头企业。 以创新引领潮流,以务实实现发展。达利集团历来重视研发创新,采取自主

创新和引进技术相结合的办法引领潮流。拥有领先技术的自动化高产率的各类产品生产线500多条,其中休闲食品生产线400多条、国际标准化PET冷罐装饮料生产线、PET热罐装饮料生产线、三片罐生产线、瓶桶装饮用水生产线计有100多条。同时,十分注重科研队伍建设和新产品研发,成立了技术开发中心,每年投入年销售额的 3.5%用于新产品的开发以及生产设备的技术改造,并与国内外众多食品、饮料研发机构有着广泛深入的合作,形成强大的技术实力,奠定了雄厚的行业基础。正是凭借强大的研发能力和综合实力,以及卓越的产品品质,确保了每一项新产品都取得巨大成功。集团拥有的“达利园”糕点类、“好吃点”饼干类、“可比克”薯片类三大品牌500多个品种产品,已被公认为休闲食品的领导品牌。2007年,集团全面推出“和其正”凉茶、“优先乳”蛋白饮料、“青梅绿茶”八大品类、二十多个品种的饮料产品,品类之全、品种之多,在国内饮料界绝无仅有。通过全国6000多个经销商和90000多个销售网点畅销国内三十一个省、市、自治区的每个角落,终端渠道占有率超过85%,并出口韩国、日本、菲律宾、马来西亚等国家。稳定的营销网络,不仅赢得了市场,带来了效益,更获得国内外消费者的青睐和业界的肯定。 公司拥有各类先进生产设备和生产线130多条。其中派生产线30条、德国威化生产线6条、薯片生产线22条、英贝克1000型饼干生产线23条、国际化标准PET饮料生产线13条、国际化标准三片罐饮料生产线10条、国际化标准瓶装饮用水生产线9条、国际化标准冷罐装无菌生产线3条,形成了派类食品、薯片、饼干、饮料等四大产品系列共600多个品种。2007年下半年,达利集团推出了“和其正”凉茶、“达利园”优先乳、茶饮料、果汁饮料、植物蛋白饮料、十一种产品、六十二种包装规格,品类之多、种类之广,在国内饮料界绝无仅有。 我这次参观的主要是吉林达利食品有限公司的“可比克”薯片生产厂的生产线。 (二)生产工艺流程 原料处理→清理去杂→清洗→去皮→修整→切片→漂洗→护色→脱水→油炸→脱油→调味→冷却→喷油→拌料→包装 (三)生产设备 清洗机、输送机、去皮机、修剪台、提升机、切片机、漂洗机、护色机、连续油炸机、调味机和包装输送带。 (四)生产过程 1、原料选择:选取干物质含量高的新鲜马铃薯,要求品种纯正、芽眼浅、形状规则、无霉变腐烂、无发芽和虫害等现象,直径在50~70mm之间。

中央空调PC集中控制系统解决方案

中央空调PC集中控制系统解决方案 2018-01-10 一,中央空调集中控制系统总述 超大液晶双温显示中央空调网络集中控制温控器,可控制2/3线式阀门和三速风,智能化根据房间温度选择风速,根据房间温度自动调节阀门的开关,使人体舒适。 我们是专业的酒店中央空调网络集中控制器、集中网络空调485网络温控器生产商,我们有一流的技术研发人员,协议可以根据贵方的要求来调整,灵活的技术应用,方便你我。 怎样的集中控制485网络温控器才是好的: 1、稳定网络温控器不稳定那就和普通温控器差不多,反而会给你带来心灵上的烦忧。所以一个稳定的485温控器很重要。 2、不耐用,花了这么多的钱,产品品质不好,采用的元器件不好,比如用的不耐用的芯片,不耐用的继电器,不耐用的变压器等等,那么会发生什么呢?可想而知,产品使用周期短,没用多久出毛病了又得从而更换新的,花钱费时间,实在划不来。 稳定性强,标准的MODBUS协议,高级软硬件开发工程师,和我们的工程师交流你会发现是那么的专业。 耐用性我们的产品采用的都是优秀的品牌产品,质量上可靠性强,也经得起考验。产品稳定性从何而来,莱安你值信赖,也是你值得信l赖的控制器开发合作伙伴。 二、技术参数 1.额定电压:220VAC(1±10%),50/60Hz; 2.自身功耗:<1.5W;

3.负载电流:<5A(阻性负载); 4.控温精度:±1℃(1-10可调); 5.控温范围:5.0℃(0-25可调)~35.0℃(25-85可调); 6.外形尺寸:86mm×86 mm×13mm(面板:高×宽×厚); 7.材料和颜色:白色PC/ABS阻燃材料(颜色可以定制)。 三、网络温控器可实现如下功能: 1、所以末端温控器联网控制后,每台温控器都可以在电脑终端进行远程集中控制。 2、可以在电脑终端观察到没个温控器的工作状态:风速档位开关机状态模式运行状态,设定温度、实际测量温度值都可在电脑终端查看到。 3、可以在电脑终端控制每个温控器比如设定温度风速调整开关机转换模式转换。 四、方案约定: (1)、每个数据采集卡(串口服务器)最多可以带32个温控器,每台电脑可以控制最多64个数据采集卡 (2)、具体每个数据采集卡带温控器数量有布线方便决定, (3)、本工程中需要使用温控器为N台 (4)、初步计算数据采集卡的数量为:N/ 32 = ?(具体使用采集卡数量得根据楼房房间的多少,而定) (5)、RS232-485转换器的个数:1个 (6)、PC电脑: 1台 (7)、集中控制软件:1套 (8)、布线:

达利园集团实训报告

网络营销实训报告 专业班级: 16市场营销(3)班 小组名称:蒂花之秀 小组成员:韦亮生孙银梅许依文黄柏伟施健豪韦健成指导教师:黄德圆老师

1.网站介绍:达利园食品集团 达利集团诞生于历史文化名城、东亚文化之都泉州。自1989年创办至今,历经二十余载飞速发展,达利集团已成长为收益过百亿位列中国民营企业500强的综合性现代化食品企业集团。2015年11月20日,集团于香港联交所主板挂牌上市(股份代号:3799.HK)。 达利集团根据行业特征,精心布局,在全国16个省区建立18家子公司共30个食品、饮料生产基地,1个马铃薯全粉生产基地,1家包装彩印公司,同时,集团构建享誉业界的黄金销售渠道,组成了覆盖全国的营销网络。 达利集团专注食品行业,形成食品、饮料两大支柱齐头并进的产业结构。 以大平台、高密度、立体化的品牌推广模式,提升品牌形象,旗下“达利园” 糕点类、“好吃点”饼干类、“可比克”薯片类三大品牌,已成为公认的中国休闲食品领导品牌,“和其正”凉茶、“达利园”花生牛奶、“乐虎”功能饮料,在各自行业处于领先地位。多产业多品牌的发展战略,使达利集团成为在食品和饮料行业都具有超大规模与超强实力的企业。 2017年,集团敏锐洞察新消费趋势,立足国人对健康营养的摄取需求,推出天然不添加的“豆本豆”豆奶,迅速引爆饮品市场成为广受国民喜爱的营养饮品品牌。 达利集团以创新驱动企业发展,坚持生产技术革新。通过自主研发、引进技术、合作开发等方式,集团目前已拥有众多国际先进的各类食品饮料生产线。集团建立行业领先的产品研发中心,组建强大的研发团队,与国内外众多食品行业研究机构密切合作,不断提升产品品质,开发消费者喜爱的新产品。对创新的持续投入为集团把握消费趋势、引领行业发展方向提供强有力的保障。 达利食品集团在不断发展的同时,不忘回报社会,倾力参与慈善公益事业。集团秉承许世辉董事长“优先发展教育事业、弘扬中华传统美德”的公益理念,先后成立四个教育基金、两个慈善基金。至今,达利食品集团累计捐赠超过人民币5亿元,两次被国家民政部授予慈善最高奖项“中华慈善奖”。 达利食品集团恪守“用心创品质”的企业理念,以“为消费者提供品质生活、健康饮食”为企业目标,不断研发新品、提升品牌影响力和企业管理,不断扩展深耕遍布全国的分销网络。依托从产品研发中心到食品公司,从包装公司到原料生产基地的产业超级平台,达利集团已将企业打造成综合性、国际化的现代企业,继续保持和巩固在行业中的领导地位和增长实力。

路灯集中控制系统方案

路灯集中控制系统方案 一.通信网络的组成 市政路灯实现集中控制的核心问题是通信问题。路灯集中控制系统采用无线控制技术,利用中国联通GSM短消息功能传输控制信息。本系统包括一个管控中心(主站)和22个分控点(从站),共计23个站点。主站是一台扩展了无线通信功能的计算机,运行路灯控制程序;从站是专门开发的具有GSM无线通信能力的路灯控制器。整个控制系统的网络拓扑如图1。 在当前的社会技术环境下,可行的通信方案有很多种,本方案的技术先进性好,拓扑结构达到最简单,设备成本低,不必考虑网络维护问题,通信费用低,是最有实用价值的方案,也是性价比最高的方案。 二.无线路灯控制器 无线路灯控制器具有普通路灯控制器定时开关灯的功能,由于包含了无线远程控制功能,本控制器中扩展了交流电流测量功能,这就使系统具备了电流遥测能力,在本系统这一扩展具有重要意义。

三.在中心控制室对系统进行操控 1.计算机内存储了一年中根据日出日落时间设置的开灯关灯时间表,系统可以根据这个表进行全自动开灯关灯的操作。对这个表随时可以进行修正,以达到更理想的效果,修改结果对全体路灯都有效。 2.每个从站上的控制器有两路控制输出,所以可以把路灯分成两组,夜深人静时可以关掉一组,降低照度,节约用电。 3.在计算机的屏幕上显示有路灯控制关系图,用鼠标点击地图上的按钮就可以对任何控制点实现立即开灯、立即关灯。 4.可以对每组路灯的工作电流进行遥测,从而可以推断出亮灯率,这种方法可以及时发现亮灯率低于控制值的线路,有针对性地进行巡灯修复;对于亮灯率高于控制值的线路可以免除巡灯工作,降低相关人员的劳动强度。 5.系统的操作界面是充分图形化的,大体说来,认识汉字、会看地图、会用

智能集中控制系统

智能集中控制系统功能 √ 提供无线液晶触摸显示屏控制被控设备功能 √ 提供音视频矩阵信号任意切换等功能 √ 提供控制VGA矩阵信号任意切换等功能 √ 提供控制RGB矩阵信号任意切换等功能 √ 提供实现实物展台控制等功能 √ 提供控制投影机/等离子屏的打开、关闭、切换视频信号、VGA信号,RGB信号的等功能 √ 提供控制DVD的播放、停止、前进、后退、暂停、前曲、后曲、声道切换、字幕切换、菜单选择等功能 √ 提供控制LD/CD/MD/DAT的播放、停止、前进、后退、暂停、前曲、后曲等功能 √ 提供控制录像机的播放、停止、前进、后退、暂停、频道及录像等功能选择 √ 提供控制卡座的播放、停止、前进、后退、暂停、频道选择及录像等功能 √ 提供实现会议系统和摄像系统的联动控制等功能 √ 提供控制摄像机左右移/上下移/变焦/聚焦/预设/调用预设等功能 √ 提供控制电视/监视器开关及选台等功能 √ 提供控制电动幕的上升、暂停、下降等功能 √ 提供控制投影机吊架的上升、暂停、下降等功能 √ 提供控制电灯吊架的上升、暂停、下降等功能 √ 提供控制窗帘的打开、暂停、关闭等功能 √ 提供控制舞台灯光的明暗调节,调用预设模式等功能 √ 提供控制灯光的打开或关闭等功能 √ 提供控制其它第三方照明灯光系统,实现开关控制、调光控制并能预设场景模式等功能 √ 提供控制机柜设备所需电源供应,并能成之按要求顺序开关,以保护设备等功能 √ 提供其它能实现一键多能或保护设备的程序等功能 √ 提供设备网上下载固件升级硬件等功能 √ 因为本系统具有极强的开发能力软件架构,控制功能强大,因此所能实现功能不能罗列周全…… 界面简介 为了让您更直观地了解本系统触摸屏人性化和简单易懂的界面,现在我们假设您的触摸屏的几个页面。至于方案的最后实施,我们将根据您的实际情况和具体需要做更多的沟通,直至它能真正满足您的需要。我们假设您的触摸屏的初始页面如图1所示:

达利园市场调查报告

达利集团 市 调 报 告 王高才

二、达利集团简介 (4) 一、全国布局 (4) 二、发展历程及大事件 (5) (一)发展历程 (5) (二)大事件 (6) 三、董事长寄语 (7) 四、产品结构 (8) (一)休闲食品产业 (8) (二)饮料产业 (8) 五、企业文化 (8) 六、经营理念 (9) 七、社会责任 (10) (一)拉动经济,促进就业 (10) (二)热心慈善回报社会 (10) 1. 重教兴学 (10) 2. 爱心敬老 (10) 3. 震灾救援 (11) 八、旗下品牌 (11) (一)达利园 (11) (二)可比克 (11) (三)好吃点 (12) (四)和其正 (12) (五)花生牛奶 (12) (六)乐虎 (12) (七)蓝蒂堡 (12) (八)达利园饮料系列 (12) 九、营销网络 (14) (一)营销渠道 (14) (二)品牌传播 (14) 十、人才理念 (14) (一)达利管理团队的“力度”文化 (15) (二)达利人力资源的“优势”战略 (15) 十一、饮料行业现状 (15) 十二、饮料行业的未来趋势 (16) 十三、达利园三大核心产业 (19) (一)和其正系列 (19) (二)乐虎系列 (22) (三)花生牛奶系列 (23) (四)其他系列 (24) (一)

(一)达利集团简介 达利集团诞生于历史文化名城、东亚文化之都泉州。自1989年创办至今,历经二十余载飞速发展,达利集团已成长为收益过百亿位列中国民营企业500强的综合性现代化食品企业集团。 达利集团根据行业特征,精心布局,在全国16个省区建立18家子公司共30个食品、饮料生产基地,1个马铃薯全粉生产基地,1家包装彩印公司,同时,集团构建享誉业界的黄金销售渠道,组成了覆盖全国的营销网络。 达利集团专注食品行业,形成食品、饮料两大支柱齐头并进的产业结构。以大平台、高密度、立体化的品牌推广模式,提升品牌形象,旗下“达利园”糕点类、“好吃点”饼干类、“可比克”薯片类三大品牌,已成为公认的中国休闲食品领导品牌,“和其正”凉茶、“达利园”花生牛奶、“乐虎”功能饮料,在各自行业处于领先地位。多产业多品牌的发展战略,使达利集团成为在食品和饮料行业都具有超大规模与超强实力的企业。 达利集团以创新驱动企业发展,坚持生产技术革新。通过自主研发、引进技术、合作开发等方式,集团目前已拥有众多国际先进的各类食品饮料生产线。集团建立行业领先的产品研发中心,组建强大的研发团队,与国内外众多食品行业研究机构密切合作,不断提升产品品质,开发消费者喜爱的新产品。对创新的持续投入为集团把握消费趋势、引领行业发展方向提供强有力的保障。 达利集团积极回报社会,把企业社会责任融入到企业文化和生产经营活动中,在不断成长壮大之时,倾力参与慈善公益事业,先后成立四个教育基金、两个慈善基金。截止2014年,达利累计捐赠超过人民币5亿元,先后两次被国家民政部授予“中华慈善奖”。 达利集团恪守“用心创品质”的企业理念,以卓越的品牌形象、优良的产品品质、便利的消费体验,助力消费者缔造品质生活。依托从产品研发中心到食品公司,从包装公司到原料生产基地的产业超级平台,达利集团已将企业打造成综合性、国际化的现代企业,为引领中国食品行业发展贡献力量。 (二)全国布局 截止2014年,集团已在全国投建18家公司,形成东南、北部、中部、西部四大板块的全国布局。

达利食品考勤规章制度

达利 DLJT【2016】-ZH0001号 达利食品集团有限公司考勤管理制度 第一章目的 为加强公司考勤管理,督促员工养成自觉遵守纪律的好习惯,促进规范化建设,提高工作效率,保证各项工作的正常开展,特制定本考勤制度。 第二章适用范围 本制度适用于达利食品集团有限公司食品厂、达利食品集团有限公司饮料厂全体员工,此制度的建立是对全体员工进行出勤检查与管理的基本依据。 必要的、严格的、实事求是的考勤管理是圆满完成各项工作任务的重要保证,是提高全体员工素质的必要条件,各部门领导和有关负责人必须把考勤管理作为经常性的工作加以重视。 第三章打卡管理规定 自觉维护正常的办公秩序是全体员工的共同职责,各部门员工要严于律己,互相监督,确保将考勤管理工作落到实处。各部门领导要加强检查和督促,严格管理、严格要求,以保证本制度的顺利实施。 1.打卡规定 1)公司实行上、下班指纹考勤机录入打卡制度(个别特殊岗位使用纸卡)。全体员工都必须自觉遵守工作时间,打卡考勤人员需在首次指纹所录入的打卡机打卡签到,不得串打,若违规,一律按考勤无效计; 2)打卡时间及次数:打卡时间为上班到岗时间和下班离岗时间,因岗位不

同,打卡次数分为两类(第一类:7:30-11:30 13:30-17:30 18:30-20:30 第二类:7:30-12:00 13:30-18:00); 3)外出不能打卡者:公司员工除下列人员外,均应按规定上下班时间签到(打卡): 4)因公出差人员;因公外出不能打卡应填写《补卡申请单》注明外出日期、事由、外勤起止时间,按照签批流程经签字核准后提交至综合部予以存档、备查,做为当月结算工资依据; 5)临时因公事务;因公外出需事先申请,如因特殊情况不能事先申请,应在事毕到岗当日填写《补卡申请单》并完成签批流程,否则按旷工处理; 6)因停电、卡机故障故障未打卡成功的员工,上班前、下班后要及时到部门考勤员处填写《补卡申请单》,由直接主管签字证明当日的出勤状况,按照签批流程经签字核准后提交至综合部予以存档、备查,做为当月结算工资依据; 7)漏打卡者:漏打卡,因指纹原因打卡不成功,或因工作关系忘记打卡,需填写《补卡申请单》,并有直接主管领导签字审核,否则均按缺勤处理; 8)打卡机不识别:须及时填写《补卡申请单》,并找本部门直接主管签字确认或其他人证明并签字确认,方可不做扣罚处理。 2.扣罚条例 1)所有员工上下班均需在规定时间内完成打卡;上班未在规定时间签到者为迟到;未经请假提前下班者为早退;工作时间擅离岗位者为溜班。 2)迟到或早退在5分钟内(月累计迟到三次以内者,不予以扣款),超过三次者,每次扣款10元;超过5分钟小于15分钟每次扣款15元;超过15分钟小于30分钟每次扣款20元;超过30分钟者按旷工计;溜班半个小时以上者按旷工计;员工旷工半天扣发当日工资,旷工一天扣发三倍工资并取消当月公休,连

交通信号集中控制系统技术方案

城市交通信号集中控制系统 技术方案

目录 1、系统设计依据 (2) 2、系统的组成 (3) 3、功能与特点: (6) 4、系统指标 (7) 4.1 中心计算机配置指标: (7) 4.2、通讯系统 (8) 4.3 、交通信号机的技术指标: (9) 4.4、环行线圈车辆检测器的技术指标: (9) 5、组成设备介绍 (10) 5.1、UTC1000集中协调式交通信号控制机 (10) 5.2、环形线圈车辆检测器: (12) 5.3、GIS地理信息系统(可选): (14) 5.4、通讯计算机系统 (14) 5.5、中心软件 (15) 5.5.3、操作台软件基本功能说明: (18) 附件1、信号机基础件: (44) 附件2、信号机外型图: (45) 附件3、信号机实际效果图: (1)

城市交通集中协调式控制系统(UTCS, Urban Traffic Control System)是现代城市智能交通系统(ITS )的重要组成之一,主要用于城市道路交通的控制与智能化管理。 交通信号控制系统主要功能是自动协调和控制区域内交通信号灯的配时方案,均衡路网内交通流运行,使停车次数、延误时间及环境污染等减至最小,充分发挥道路系统的交通效益。必要时,可通过指挥中心人工干预,直接控制路口信号机执行指定相位,强制疏导交通。 通过安装在道路上的车辆检测器,智能信号控制系统可以优化交通信号灯网络的交通方案,使其适应交通流变化条件,从而使在控路网中运行的车辆的延误和停车次数达到最小,交通信号控制系统全面实施以后,在控制区域内应达到:行车延误减少15%以上、行车速度提高10%以上,停车次数减少15%以上。 1、系统设计依据 依据国家和行业相关标准、相关研究成果等资料进行本设计,具体如下: 《全面推进公安交通管理信息系统建设和应用工作的意见》 《道路交通信号机标准》(GA47-2002) 《道路交通信号控制系统术语》(GA/T509---2004) 《公安交通指挥系统工程设计规范》(GA/T515---2004) 《城市道路交通信号控制方式适用规范》(GA/T527-2005) 《交通信号控制机与上位机间的数据通信协》 (GB20999-2007-T)《倒记时显示器》(GAT508-2004) 《计算机信息系统安全保护等级划分准则》(GB17859) 《民用闭路监视电视系统工程技术规范》(GB50198)

SFC生产过程集中控制管理解决方案docx

SFC生产过程集中控制管理解决方案 在整个企业流程里,制造过程只是其中众多的环节之一,但它是形成企业核心竞争力的最有力的武器,所有的改善都基于生产数据。Predator SFC系统解决方案帮助企业集中控制所有生产资源,实时掌握生产数据,及时应对生产现场各种挑战。生产能力平台的搭建,降低生产成本,全面有效的提高生产运营管理。建立真正的数字化工厂,提升市场竞争优势。 >> Predator SFC 系统解决方案适用企业: 各类规模的离散制造企业,以机械加工装配为主 以多品种小批量,多品种多批量为主的各种生产类型 研发和批产混合生产模式的制造企业 适应各类按库存、按订单生产的制造企业 生产管理模式寻求突破、创新,产品工艺复杂和状况多变的制造企业 >> Predator SFC 系统解决方案覆盖生产车间: 车床、铣床、磨床、冲床、柔性化制造线、PLC、加工中心、机器人、激光机、工控机、对刀仪、切割机、焊接机。 >> 是否碰到如下生产状况: 对降低生产成本和改善生产无从下手,没有真实的生产数据作为依据 设备硬件数量增加,设备的利用率低,产量上升不明显 产品质量不佳,无法追溯

生产信息无法准确传达 转型“精益生产”,找不到合适的切入方向 >> 主要功能: 生产工位平台化 作为最佳车间网络管理平台,稳定的运作保障生产数据顺畅流转,合理有效的集中管理生产过程中的所有生产数据。 生产周期可控化 实时掌握生产能力及生产成本,可视化各工序间的负荷分析,使之达到能力线平衡,提供强大的底层数据支撑,使MES引擎效能最大化。 生产文档无纸化 确保生产数据及生产文档流转便捷和安全,具有可追溯性。生产现场标准化作业生产管理,降低产品的报废及不合格量。派工的同时推送工艺文档,延伸MES 的底层功能。 生产数据集成化 支持API、VB Script、Java Script、Web Service、SDK 等通用型接口,与企业现有的MES/ERP/PLM/CAPP 等集成,提供强大的底层数据支撑。 >> Predator SFC 系统解决方案帮助企业实现: 车间信息通讯无盲点,实时高效反馈车间所有生产数据,全面有效提高车间集中管控; 消除生产作业无价值的数据,减少浪费,实现生产资源最大化; 通过生产过程控制的精细化,从基础数据改善切入,从生产控制的精细化破题,实现车间精细化生产管理; 为数控机加工中心CNC、智能机器人和三坐标测量仪等其他生产设备在内的所有

远程集中监控中心解决-方案

一、解决方案 (一)远程集中监控中心 主要由:管理中心、视频调度指挥中心、MCU流媒体服务器、GIS地理信息(报警中心电子地图)、网络储存服务器和解码终端构成。 (二)监控中心主要功能以下: a)管理中心 对监控地点及操作人员的编辑,包括新建、修改、删除; 对操作员进行权限设置,采用灵活的菜单权限设置方式; 在整个系统中,系统具有精细权限管理功能,能对系统中所有权限用户进行统一、准确、精细的管理和权限划分,保障系统中高级用户和各级领导在重大情况或紧急 情况下对系统的操作控制优先权。 每个对象均可以进行精细权限设置,比如可为每个用户设置对每个摄像头的权限(是否可以实时监控、历史点播、云台控制等)。 支持用户优先级级别管理,对同一个资源,如果两个用户均具备相应的权限,级别高的用户可以抢占级别低的用户的对该资源的拥有权,用户的控制权被抢占时会得 到明显的通知。 对用户的操作请求进行权限认证,当用户不具备相应操作的权限时,此用户的请求被拒绝,反之则接收并允许进行操作,同时将本操作记录至操作日志; 对来自报警管理主机的报警信息进行报警日志记录,同时进行转发,可自动转发至已经设置好的多个目的主机; 操作日志、报警日志的查询。 b)视频调试指挥中心 网络预览:通过多IP的方式,同屏幕可以支持36个视频实时浏览,一台中心机可以同时控制10台以上的解码终端,从而可以形成36*128的数字矩阵监控系统。可以同时实时预览多达36路的图像和声音,每个监控点的图像和声音可以任意切换,。可以在1、 4、6、8、9、10、12、16、24全屏等多种画面分割模式中切换显示。 云台控制:对网络视频服务器所连接的云台及镜头进行控制 远程监听:可把远端声音传送回中心 远程录像文件检索:按日期、时间、类型、服务器、通道检索客户端本地或远程服务器端录像文件。

金蝶财务业务一体化集中管理解决方案

金蝶专业版财务业务一体化 解决方案

目录 一功能介绍 (3) 1采购管理 (3) 2销售管理 (4) 3仓存管理 (5) 4存货核算 (6) 5应付帐款管理系统 (7) 6应收帐款管理系统 (7) 7账务处理 (9) 8固定资产 (9) 9工资管理 (10) 10报表与分析 (10) 11出纳管理 (10) 二服务内容 (11) 三、远程接入介绍 (12) 3.1 产品概述 (12) 3.2 功能特点 (12) 3.3 关键特性 (13) 3.4 CTBS接入策略拓朴图 (14) 3.5 方案特点 (14) 3.6 方案价值 (14) 四费用预算................................................................................................... 错误!未定义书签。

一功能介绍 金蝶专业版系统提供财务和业务一体化的解决方案,使物流、资金流、信息流高度集成化和一体化。 销售、采购、生产、仓存等环节发生的业务数据同步在金蝶财务系统形成财务数据,迅速得到各种复杂的财务报表,为企业提供及时、准确的决策依据。 1采购管理 实现多类型的采购业务处理,包括现购、赊购和采购退货业务 及时准确的供应商分级分类管理、详实的历史采购信息追踪 快捷灵活的采购订单管理 方便的采购入库及退货处理,提供与订单和发票的钩稽,发票和入库单实现部分钩稽功能,在钩稽界面选择需要钩稽的发票和单据中对应的分录行即可完成钩稽 灵活简便的采购结算,发票的跟踪核销功能 支持多维度的采购分析报表 实用的价格管理 提供单据下推、模糊录单等针对易用性的功能

相关文档