Jump to content

Component: Serial EEPROM (93C46) (EEPROM): Difference between revisions

From Flowcode Help
m Text replacement - "width="10%" align="center" style="background-color:#D8C9D8;"" to "width="10%" align="center" class="mtx-class-macrohead""
m Text replacement - "style="background-color:#EAE1EA;"" to "class="mtx-class-propfolder""
 
(2 intermediate revisions by the same user not shown)
Line 99: Line 99:
|-
|-
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''Erase'''
| width="90%" class="mtx-class-macrohead" | '''Erase'''
|-
|-
| colspan="2" |  
| colspan="2" |  
Line 118: Line 118:
|-
|-
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''EraseAll'''
| width="90%" class="mtx-class-macrohead" | '''EraseAll'''
|-
|-
| colspan="2" |  
| colspan="2" |  
Line 132: Line 132:
|-
|-
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''Read'''
| width="90%" class="mtx-class-macrohead" | '''Read'''
|-
|-
| colspan="2" | 8bit mode address = 0 to 128 Data = 0 to 255 16bit mode address = 0 to 64 Data = 0 to 65535 
| colspan="2" | 8bit mode address = 0 to 128 Data = 0 to 255 16bit mode address = 0 to 64 Data = 0 to 65535 
Line 151: Line 151:
|-
|-
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''SendBits'''
| width="90%" class="mtx-class-macrohead" | '''SendBits'''
|-
|-
| colspan="2" | A simple example showing a generic way to write a register using I2C. 
| colspan="2" | A simple example showing a generic way to write a register using I2C. 
Line 175: Line 175:
|-
|-
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-comp-macro.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''Write'''
| width="90%" class="mtx-class-macrohead" | '''Write'''
|-
|-
| colspan="2" | 8bit mode address = 0 to 128 Data = 0 to 255 16bit mode address = 0 to 64 Data = 0 to 65535 
| colspan="2" | 8bit mode address = 0 to 128 Data = 0 to 255 16bit mode address = 0 to 64 Data = 0 to 65535 
Line 200: Line 200:
|-
|-
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-prop-icon.png]]
| width="10%" align="center" class="mtx-class-macrohead" | [[File:Fc9-prop-icon.png]]
| width="90%" style="background-color:#D8C9D8; color:#4B008D;" | '''Properties'''  
| width="90%" class="mtx-class-macrohead" | '''Properties'''  
|-
|-
|-
|-
Line 208: Line 208:
| colspan="2" |  
| colspan="2" |  
|-
|-
| width="10%" align="center" style="background-color:#EAE1EA;" | [[File:Fc9-conn-icon.png]]
| width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]]
| width="90%" style="background-color:#EAE1EA; color:#4B008D;" | Connections
| width="90%" class="mtx-class-propfolder" | Connections
|-
|-
|-
|-
Line 232: Line 232:
| colspan="2" | EEPROM pin 4 
| colspan="2" | EEPROM pin 4 
|-
|-
| width="10%" align="center" style="background-color:#EAE1EA;" | [[File:Fc9-conn-icon.png]]
| width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]]
| width="90%" style="background-color:#EAE1EA; color:#4B008D;" | Operations
| width="90%" class="mtx-class-propfolder" | Operations
|-
|-
|-
|-
| width="10%" align="center" style="background-color:#EAE1EA;" | [[File:Fc9-conn-icon.png]]
| width="10%" align="center" class="mtx-class-propfolder" | [[File:Fc9-conn-icon.png]]
| width="90%" style="background-color:#EAE1EA; color:#4B008D;" | Control Codes
| width="90%" class="mtx-class-propfolder" | Control Codes
|-
|-
|}
|}

Latest revision as of 14:37, 13 July 2026

Author MatrixTSL
Version 1.0
Category EEPROM


Serial EEPROM (93C46) component

A simple example showing the bare bones used to create a component based on SPI communications. ORG pin must be connected to GND

Component Source Code

Please click here to download the component source project: FC_Comp_Source_Serial_EEPROM_(93C46).fcfx

Please click here to view the component source code (Beta): FC_Comp_Source_Serial_EEPROM_(93C46).fcfx

Detailed description

No detailed description exists yet for this component

Examples

No additional examples







Macro reference

Erase

Erase
 
- BYTE Address
 
- VOID Return


EraseAll

EraseAll
 
- VOID Return


Read

Read
8bit mode address = 0 to 128 Data = 0 to 255 16bit mode address = 0 to 64 Data = 0 to 65535 
- BYTE address
 
- UINT Return


SendBits

SendBits
A simple example showing a generic way to write a register using I2C. 
- UINT value
 
- BYTE length
 
- VOID Return


Write

Write
8bit mode address = 0 to 128 Data = 0 to 255 16bit mode address = 0 to 64 Data = 0 to 65535 
- BYTE address
 
- UINT Value
 
- VOID Return


Property reference

Properties
Mode
 
Connections
CS
EEPROM pin 1 
SK
EEPROM pin 2 
DI
EEPROM pin 3 
DO
EEPROM pin 4 
Operations
Control Codes